From 461911b3d6382efa4bf0d6b4230d314a062b6733 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 12 Sep 2024 16:14:08 +0300 Subject: [PATCH] docs: update project name --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0aaca43..05a932d 100644 --- a/README.md +++ b/README.md @@ -72,13 +72,15 @@ logger.critical("This is a critical message") In your Django project's `settings.py` file, add the following logging configuration: ```python +BASE_DIR = Path(__file__).resolve().parent.parent + LOGGING = { "version": 1, "disable_existing_loggers": False, "formatters": { "bunyan": { "()": BunyanFormatter, - "project_name": "cashflow", + "project_name": "MyProject", "project_root": BASE_DIR, }, },