-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapache.ini-example
More file actions
50 lines (38 loc) · 878 Bytes
/
apache.ini-example
File metadata and controls
50 lines (38 loc) · 878 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[app:virginia]
use = egg:virginia
root = /tmp/www
bibpath = /tmp/bibs
includepath = /tmp/www
#pyramid.includes = pyramid_debugtoolbar
[pipeline:main]
pipeline = translogger virginia
[filter:translogger]
use = egg:Paste#translogger
setup_console_handler = False
# Begin logging configuration
[loggers]
keys = root, {{package_logger}}
[handlers]
keys = console, filelog
[formatters]
keys = generic
[logger_root]
level = DEBUG
handlers = console, filelog
[logger_{{package_logger}}]
level = DEBUG
handlers =
qualname = {{package}}
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[handler_filelog]
class = FileHandler
args = ('%(here)s/virginia.log','a')
level = DEBUG
formatter = generic
[formatter_generic]
format = LOG: %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration