mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-10 18:40:53 +00:00
Add a default logging configuration file, and small typo fixes
This commit is contained in:
parent
e87ffeadb1
commit
899379d073
3 changed files with 71 additions and 5 deletions
63
logging
Normal file
63
logging
Normal file
|
@ -0,0 +1,63 @@
|
|||
# -*- mode: conf -*-
|
||||
# vim:ft=cfg
|
||||
|
||||
# Logging config file for Radicale - A simple calendar server
|
||||
#
|
||||
# The default path for this file is /etc/radicale/logging
|
||||
# This can be changed in the configuration file
|
||||
#
|
||||
# Other handlers are available. For more information, see:
|
||||
# http://docs.python.org/library/logging.config.html
|
||||
|
||||
|
||||
# Loggers, handlers and formatters keys
|
||||
|
||||
[loggers]
|
||||
# Loggers names, main configuration slots
|
||||
keys=root
|
||||
|
||||
[handlers]
|
||||
# Logging handlers, defining logging output methods
|
||||
keys=console,file
|
||||
|
||||
[formatters]
|
||||
# Logging formatters
|
||||
keys=simple,full
|
||||
|
||||
|
||||
# Loggers
|
||||
|
||||
[logger_root]
|
||||
# Root logger
|
||||
level=DEBUG
|
||||
handlers=console,file
|
||||
|
||||
|
||||
# Handlers
|
||||
|
||||
[handler_console]
|
||||
# Console handler
|
||||
class=StreamHandler
|
||||
level=INFO
|
||||
args=(sys.stdout,)
|
||||
formatter=simple
|
||||
|
||||
[handler_file]
|
||||
# File handler
|
||||
class=FileHandler
|
||||
level=DEBUG
|
||||
args=('/var/log/radicale',)
|
||||
formatter=full
|
||||
|
||||
|
||||
# Formatter
|
||||
|
||||
[formatter_simple]
|
||||
# Simple output format
|
||||
format=%(message)s
|
||||
datefmt=
|
||||
|
||||
[formatter_full]
|
||||
# Full output format
|
||||
format=%(asctime)s - %(levelname)s: %(message)s
|
||||
datefmt=
|
Loading…
Add table
Add a link
Reference in a new issue