trytond/trytond_log.conf
Axel Braun f0291e345b - Version 4.6.10 - Bugfix Release
- Version 4.6.9 - Bugfix Release
- Version 4.6.8 - Bugfix Release
- Version 4.6.7 - Bugfix Release
- Version 4.6.6 - Bugfix Release
- Version 4.6.5 - Bugfix Release
- trytond_log.conf changed to new notation
- Version 4.6.4 - Bugfix Release
- Version 4.6.3 - Bugfix Release
- Version 4.6.2 - Bugfix Release
- Version 4.6.1 - Bugfix Release
- Version 4.6.0 - initial build

OBS-URL: https://build.opensuse.org/package/show/Application:ERP:GNUHealth:Factory/trytond?expand=0&rev=41
2018-12-28 14:30:20 +00:00

30 lines
585 B
Plaintext

# /etc/tryton/trytond_log.conf - Logging configuration file for Tryton Server (trytond)
#
# Copyright (c) 2016 Mathias Behrle <mbehrle@m9s.biz>
#
# This file contains settings for trytond to rotate logs daily and
# to keep 30 logs.
[database]
[formatters]
keys=simple
[handlers]
keys=rotate
[loggers]
keys=root
[formatter_simple]
format=%(asctime)s] %(levelname)s:%(name)s:%(message)s
datefmt=%a %b %d %H:%M:%S %Y
[handler_rotate]
class=handlers.TimedRotatingFileHandler
args=('/var/log/tryton/trytond.log', 'D', 1, 30)
formatter=simple
[logger_root]
level=INFO
handlers=rotate