~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wiki/config/logging/stderr

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mfrom: (0.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080622211713-fpo2zrq3s5dfecxg
Tags: 1.7.0-3
Simplify /etc/moin/wikilist format: "USER URL" (drop unneeded middle
CONFIG_DIR that was wrongly advertised as DATA_DIR).  Make
moin-mass-migrate handle both formats and warn about deprecation of
the old one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[DEFAULT]
 
2
# Default loglevel, to adjust verbosity: DEBUG, INFO, WARNING, ERROR, CRITICAL
 
3
loglevel=INFO
 
4
 
 
5
[loggers]
 
6
keys=root
 
7
 
 
8
[handlers]
 
9
keys=stderr
 
10
 
 
11
[formatters]
 
12
keys=screen
 
13
 
 
14
[logger_root]
 
15
level=%(loglevel)s
 
16
handlers=stderr
 
17
 
 
18
[handler_stderr]
 
19
class=StreamHandler
 
20
formatter=screen
 
21
level=%(loglevel)s
 
22
args=(sys.stderr, )
 
23
 
 
24
[formatter_screen]
 
25
format=%(asctime)s %(name)s %(levelname)s %(message)s
 
26
datefmt=
 
27
class=logging.Formatter
 
28