Skip to content

Commit

Permalink
fix: formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeemshahzad committed Oct 8, 2024
1 parent 51bd007 commit f8a0db7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notesserver/settings/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ def build_logging_config():
},
},
'loggers': {
'django': {'handlers': handlers, 'propagate': True, 'level': 'INFO'},
"elasticsearch.trace": {'handlers': handlers, 'level': 'WARNING', 'propagate': False},
'': {'handlers': handlers, 'level': 'DEBUG', 'propagate': False},
'django': {'handlers': handlers, 'propagate': True, 'level': 'INFO', 'formatter': 'standard'},
"elasticsearch.trace": {'handlers': handlers, 'level': 'WARNING', 'propagate': False, 'formatter': 'standard'},
'': {'handlers': handlers, 'level': 'DEBUG', 'propagate': False, 'formatter': 'standard'},
},
}

Expand Down

0 comments on commit f8a0db7

Please sign in to comment.