| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "version": 1,
- "disable_existing_loggers": false,
- "formatters": {
- "simple": {
- "format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
- }
- },
- "handlers": {
- "console": {
- "class": "logging.StreamHandler",
- "level": "INFO",
- "formatter": "simple",
- "stream": "ext://sys.stdout"
- },
- "info_file_handler": {
- "class": "logging.handlers.TimedRotatingFileHandler",
- "level": "INFO",
- "formatter": "simple",
- "filename": "D:/vi/vi_server/logs/info.log",
- "backupCount": 7,
- "encoding": "utf8"
- },
- "debug_file_handler": {
- "class": "logging.handlers.TimedRotatingFileHandler",
- "level": "DEBUG",
- "formatter": "simple",
- "filename": "D:/vi/vi_server/logs/debug.log",
- "backupCount": 7,
- "encoding": "utf8"
- },
- "error_file_handler": {
- "class": "logging.handlers.TimedRotatingFileHandler",
- "level": "ERROR",
- "formatter": "simple",
- "filename": "D:/vi/vi_server/logs/errors.log",
- "backupCount": 7,
- "encoding": "utf8"
- }
- },
- "loggers": {
- "my_module": {
- "level": "ERROR",
- "handlers": ["console"],
- "propagate": "no"
- }
- },
- "root": {
- "level": "DEBUG",
- "handlers": ["console", "info_file_handler", "debug_file_handler", "error_file_handler"]
- }
- }
|