Guest User

Untitled

a guest
May 26th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. [app:main]
  2. use = egg:sample
  3.  
  4. pyramid.reload_templates = true
  5. pyramid.debug_authorization = false
  6. pyramid.debug_notfound = false
  7. pyramid.debug_routematch = false
  8. pyramid.debug_templates = true
  9. pyramid.default_locale_name = en
  10. pyramid.includes = pyramid_debugtoolbar
  11.  
  12. bottlecap.site_title = SAMPLE
  13. bottlecap.site_title_link = /
  14. bottlecap.use_css_pie = true
  15. bottlecap.devmode = true
  16.  
  17. [server:main]
  18. use = egg:waitress#main
  19. host = 0.0.0.0
  20. port = 6543
  21.  
  22. # Begin logging configuration
  23.  
  24. [loggers]
  25. keys = root, sample
  26.  
  27. [handlers]
  28. keys = console
  29.  
  30. [formatters]
  31. keys = generic
  32.  
  33. [logger_root]
  34. level = INFO
  35. handlers = console
  36.  
  37. [logger_sample]
  38. level = DEBUG
  39. handlers =
  40. qualname = sample
  41.  
  42. [handler_console]
  43. class = StreamHandler
  44. args = (sys.stderr,)
  45. level = NOTSET
  46. formatter = generic
  47.  
  48. [formatter_generic]
  49. format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
  50.  
  51. # End logging configuration
Add Comment
Please, Sign In to add comment