Browse Source

Moving accounting logs to console by default

Alexandre Aubin 7 years ago
parent
commit
43a156b59e
1 changed files with 2 additions and 13 deletions
  1. 2 13
      coin/settings_base.py

+ 2 - 13
coin/settings_base.py

@@ -177,9 +177,6 @@ LOGGING = {
     'version': 1,
     'disable_existing_loggers': False,
     'formatters': {
-        'verbose': {
-            'format': "%(asctime)s - %(name)s - %(levelname)s - %(message)s",
-        },
     },
     'filters': {
         'require_debug_false': {
@@ -195,14 +192,6 @@ LOGGING = {
         'console': {
             'class': 'logging.StreamHandler',
         },
-        'coin_accounting': {
-            'level':'DEBUG',
-            'class':'logging.handlers.RotatingFileHandler',
-            'formatter': 'verbose',
-            'filename': '/var/log/coin/accounting.log',
-            'maxBytes': 1024*1024*15, # 15MB
-            'backupCount': 10,
-        },
     },
     'loggers': {
         'django.request': {
@@ -215,8 +204,8 @@ LOGGING = {
             'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
         },
         "coin.billing": {
-            'handlers': ['coin_accounting'],
-            'level': 'DEBUG',
+            'handlers': ['console'],
+            'level': 'INFO',
         }
     }
 }