Attachment 'moinlogging.ini'
Download 1 # This is a sample auth/session debug logging configuration.
2 # If one encounters problem, one usually want to have lots of information -
3 # but only from SOME parts of moin not from every part.
4 # Thus we configure the root logger to use INFO loglevel and
5 # some specific loggers to use DEBUG logging.
6
7 [DEFAULT]
8 # Logfile to create.
9 # Make sure the running moin process has create/write rights there.
10 logfile=C:\windows\system32\logfiles\moin\moin.log
11
12 [loggers]
13 keys=root,moin_auth,moin_session
14
15 [handlers]
16 keys=logfile
17
18 [formatters]
19 keys=logfile
20
21 [logger_root]
22 level=INFO
23 handlers=logfile
24
25 [logger_moin_auth]
26 level=DEBUG
27 handlers=logfile
28 propagate=0
29 qualname=MoinMoin.auth
30
31 [logger_moin_session]
32 level=DEBUG
33 handlers=logfile
34 propagate=0
35 qualname=MoinMoin.session
36
37 [handler_logfile]
38 class=FileHandler
39 formatter=logfile
40 level=DEBUG
41 args=('%(logfile)s', 'at')
42
43 [formatter_logfile]
44 format=%(asctime)s %(name)s %(levelname)s %(message)s
45 datefmt=
46 class=logging.Formatter
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.