We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f59ac4 + cc88d6f commit bbc1360Copy full SHA for bbc1360
django_prometheus/tests/end2end/testapp/settings.py
@@ -180,3 +180,11 @@ def GetMiddlewareClasses():
180
# https://docs.djangoproject.com/en/1.8/howto/static-files/
181
182
STATIC_URL = "/static/"
183
+
184
+LOGGING = {
185
+ "version": 1,
186
+ "disable_existing_loggers": False,
187
+ "handlers": {"console": {"class": "logging.StreamHandler"}},
188
+ "root": {"handlers": ["console"], "level": "INFO"},
189
+ "loggers": {"django": {"handlers": ["console"], "level": "INFO"}},
190
+}
0 commit comments