~jcsackett/charmworld/bac-tag-constraints

« back to all changes in this revision

Viewing changes to production.ini

  • Committer: kapil.foss at gmail
  • Date: 2011-10-08 17:22:53 UTC
  • Revision ID: kapil.foss@gmail.com-20111008172253-utsq8socdsx047mw
charmworld pyramid starter

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[app:main]
 
2
use = egg:charmworld
 
3
 
 
4
pyramid.reload_templates = false
 
5
pyramid.debug_authorization = false
 
6
pyramid.debug_notfound = false
 
7
pyramid.debug_routematch = false
 
8
pyramid.debug_templates = false
 
9
pyramid.default_locale_name = en
 
10
 
 
11
[server:main]
 
12
use = egg:Paste#http
 
13
host = 0.0.0.0
 
14
port = 6543
 
15
 
 
16
# Begin logging configuration
 
17
 
 
18
[loggers]
 
19
keys = root, charmworld
 
20
 
 
21
[handlers]
 
22
keys = console
 
23
 
 
24
[formatters]
 
25
keys = generic
 
26
 
 
27
[logger_root]
 
28
level = WARN
 
29
handlers = console
 
30
 
 
31
[logger_charmworld]
 
32
level = WARN
 
33
handlers =
 
34
qualname = charmworld
 
35
 
 
36
[handler_console]
 
37
class = StreamHandler
 
38
args = (sys.stderr,)
 
39
level = NOTSET
 
40
formatter = generic
 
41
 
 
42
[formatter_generic]
 
43
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
 
44
 
 
45
# End logging configuration