Skip to content

Commit

Permalink
Don't log all the queries
Browse files Browse the repository at this point in the history
  • Loading branch information
reinout committed Apr 3, 2024
1 parent 23fdd6b commit 6baaf23
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions brostar_api/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@
"level": "DEBUG" if DEBUG else "INFO",
"propagate": True,
},
"django": {
"handlers": ["console"],
"level": "INFO", # DEBUG level would also print sql statements
"propagate": False,
},
},
}

Expand Down

0 comments on commit 6baaf23

Please sign in to comment.