Logging
ALl the backend logs can be logged to below logging options with simple config
Local log storage
Edit the below configuration in development.env
or production.env
files for locally storing logs in server:
LOG_RETENTION = 7
LOG_LEVEL = "info"
LOG_FILE_SIZE = 1
LOG_RETENTION
defines the days to store the logs.LOG_LEVEL
supportserror, warning, success, info
LOG_FILE_SIZE
defines the size in MB of each log file.
Syslog
Edit the below configuration in development.env
or production.env
files for sending logs to remote syslog server:
SYSLOG_HOST = 127.0.0.1
SYSLOG_PORT = 514
SYSLOG_PROTOCOL = udp4
SYSLOG_LEVEL = "warning"
SYSLOG_PROTOCOL
supportstcp4, udp4
SYSLOG_LEVEL
supportserror, warning, success, info