Skip to content

Commit

Permalink
fix #45
Browse files Browse the repository at this point in the history
  • Loading branch information
Torsten Rehn committed Apr 15, 2015
1 parent 08dafa0 commit 08ead68
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/teamvault/apps/settings/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,13 @@ def configure_logging(config):
},
},
'loggers': {
'django': {
'handlers': ['syslog'],
'level': 'INFO',
},
'teamvault': {
'handlers': ['syslog'],
'level': 'DEBUG',
'level': 'INFO',
},
},
}
Expand All @@ -146,7 +150,10 @@ def configure_logging(config):
'handlers': ['console'],
'level': 'DEBUG',
}
LOGGING['loggers']['teamvault']['handlers'] = ['console']
LOGGING['loggers']['teamvault'] = {
'handlers': ['console'],
'level': 'DEBUG',
}
return LOGGING


Expand Down

0 comments on commit 08ead68

Please sign in to comment.