~abompard/mailman-bundler/mailman-bundler

« back to all changes in this revision

Viewing changes to mailman_web/development.py

  • Committer: Aurélien Bompard
  • Date: 2015-04-19 01:26:06 UTC
  • Revision ID: aurelien@bompard.org-20150419012606-7gn8i7l5653yilq1
Add file logging to the devel config

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
MAILMAN_API_USER = MAILMAN_USER = 'restadmin'
32
32
MAILMAN_API_PASS = MAILMAN_PASS = 'restpass'
33
33
MAILMAN_ARCHIVER_KEY = 'SecretArchiverAPIKey'
34
 
MAILMAN_ARCHIVER_FROM = ('127.0.0.1', '::1')
 
34
MAILMAN_ARCHIVER_FROM = ('127.0.0.1', '::1', '::ffff:127.0.0.1')
35
35
 
36
36
# Application definition
37
37
 
312
312
            'class': 'logging.StreamHandler',
313
313
            'formatter': 'simple'
314
314
        },
 
315
        'file':{
 
316
            'level': 'INFO',
 
317
            #'class': 'logging.handlers.RotatingFileHandler',
 
318
            'class': 'logging.handlers.WatchedFileHandler',
 
319
            'filename': os.path.join(VAR_DIR, 'mailman-web', 'hyperkitty.log'),
 
320
            'formatter': 'verbose',
 
321
        },
315
322
    },
316
323
    'loggers': {
317
324
        'django': {
318
 
            'handlers': ['console'],
 
325
            'handlers': ['console', 'file'],
319
326
            'level': 'INFO',
320
327
            'propagate': True,
321
328
        },
322
329
        'hyperkitty': {
323
 
            'handlers': ['console'],
 
330
            'handlers': ['console', 'file'],
 
331
            'level': 'INFO',
 
332
            'propagate': True,
 
333
        },
 
334
        'postorius': {
 
335
            'handlers': ['console', 'file'],
324
336
            'level': 'INFO',
325
337
            'propagate': True,
326
338
        },
334
346
        },
335
347
    },
336
348
    'root': {
337
 
        'handlers': ['console'],
 
349
        'handlers': ['console', 'file'],
338
350
        'level': 'INFO',
339
351
    },
340
352
}