Replies: 1 comment
-
Hi @gkalalfi, Thank you for the suggestion. By default, Horilla already supports Django’s built-in logging configuration via LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"handlers": {
"file": {
"level": "DEBUG",
"class": "logging.FileHandler",
"filename": BASE_DIR / "horilla.log",
},
},
"loggers": {
"django": {
"handlers": ["file"],
"level": "DEBUG",
"propagate": True,
},
"horilla": {
"handlers": ["file"],
"level": "INFO",
"propagate": True,
},
},
} This will create a Best regards, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Please confirm if there is any default loggin feature available without going for customization.
Beta Was this translation helpful? Give feedback.
All reactions