|
@@ -337,6 +337,27 @@ 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
|
|
|
- `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' ]
|
|
|
+```
|
|
|
+
|
|
|
More information
|
|
|
================
|
|
|
|