Skip to content

Commit

Permalink
Make staging logging parseable
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mao committed Jan 7, 2023
1 parent 67d2481 commit a336d2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/siarnaq/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,9 +337,9 @@ class Staging(Base):
LOGGING: dict[str, Any] = {
**_LOGGING_COMMON,
"loggers": {
"django": {"handlers": ["null"], "level": "INFO"},
"django_structlog": {"handlers": ["console"], "level": "DEBUG"},
"siarnaq": {"handlers": ["console"], "level": "DEBUG"},
"django": {"handlers": ["json"], "level": "INFO"},
"django_structlog": {"handlers": ["json"], "level": "DEBUG"},
"siarnaq": {"handlers": ["json"], "level": "DEBUG"},
},
}

Expand Down

0 comments on commit a336d2d

Please sign in to comment.