1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Configurations for "fg21sim"
# -*- mode: conf -*-
#
# Syntax: `ConfigObj`, https://github.com/DiffSK/configobj
#
# This file contains the general configurations, which control the general
# behaviors, or will be used in other configuration sections.
[logging]
# DEBUG: Detailed information, typically of interest only when diagnosing
# problems.
# INFO: Confirmation that things are working as expected.
# WARNING: An dinciation that something unexpected happended, or indicative
# of some problem in the near future (e.g., "disk space low").
# The software is still working as expected.
# ERROR: Due to a more serious problem, the software has not been able to
# perform some function.
# CRITICAL: A serious error, indicating that the program itself may be unable
# to continue running.
level = option("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL", default="INFO")
# Set the format of displayed messages
format = string(default="%(asctime)s %(name)-12s %(levelname)-8s %(message)s")
# Set the date/time format in messages (default: ISO8601)
datefmt = string(default="%Y-%m-%dT%H:%M:%S")
# Set the logging filename (will create a `FileHandler`)
filename = string(default="")
# Set the mode to open the above logging file
filemode = option("w", "a", default="a")
# Set the stream used to initialize the `StreamHandler`
stream = option("stderr", "stdout", "", default="stderr")
|