Skip to content

Commit

Permalink
Merge pull request #455 from battlecode/jerrym-staging-log
Browse files Browse the repository at this point in the history
Make staging logging parseable
  • Loading branch information
j-mao authored Jan 7, 2023
2 parents 67d2481 + a336d2d commit 024b465
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 024b465

Please sign in to comment.