Browse Source

Remove duplicate stuff in README

Alexandre Aubin 7 years ago
parent
commit
674c7c7a2c
1 changed files with 0 additions and 22 deletions
  1. 0 22
      README.md

+ 0 - 22
README.md

@@ -337,28 +337,6 @@ List of available settings in your `settings_local.py` file.
 - `SUBSCRIPTION_REFERENCE`: Pattern used to display a unique reference for any subscription. Helpful for bank wire transfer identification
 - `SUBSCRIPTION_REFERENCE`: Pattern used to display a unique reference for any subscription. Helpful for bank wire transfer identification
 - `PAYMENT_DELAY`: Payment delay in days for issued invoices ( default is 30 days which is the default in french law)
 - `PAYMENT_DELAY`: Payment delay in days for issued invoices ( default is 30 days which is the default in french law)
 
 
-
-Accounting logs
----------------
-
-To log 'accounting-related operations' (creation/update of invoice, payment
-and member balance) to a specific file, add the following to settings_local.py :
-
-```
-from settings_base import *
-LOGGING["formatters"]["verbose"] = {'format': "%(asctime)s - %(name)s - %(levelname)s - %(message)s"}
-LOGGING["handlers"]["coin_accounting"] = {
-    'level':'INFO',
-    'class':'logging.handlers.RotatingFileHandler',
-    'formatter': 'verbose',
-    'filename': '/var/log/coin/accounting.log',
-    'maxBytes': 1024*1024*15, # 15MB
-    'backupCount': 10,
-}
-LOGGING["loggers"]["coin.billing"]["handlers"] = [ 'coin_accounting' ]
-```
-
-
 Accounting logs
 Accounting logs
 ---------------
 ---------------