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.
1 parent 8238537 commit 131617fCopy full SHA for 131617f
djangoprojectjp/settings.py
@@ -256,6 +256,8 @@
256
"mezzanine.pages",
257
"mezzanine.galleries",
258
259
+ 'raven.contrib.django.raven_compat',
260
+
261
"djangoja",
262
#"mezzanine.accounts",
263
#"mezzanine.mobile",
@@ -305,6 +307,21 @@
305
307
PACKAGE_NAME_FILEBROWSER = "filebrowser_safe"
306
308
PACKAGE_NAME_GRAPPELLI = "grappelli_safe"
309
310
+LOGGING = {
311
+ 'version': 1,
312
+ 'handlers': {
313
+ 'sentry': {
314
+ 'level': 'WARNING',
315
+ 'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler',
316
+ },
317
318
+ 'root': {
319
+ 'handlers': ['sentry'],
320
321
322
323
+}
324
325
#########################
326
# OPTIONAL APPLICATIONS #
327
0 commit comments