# -*- 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=