[skeleton] Drop logging configuration from development.ini
authorDenis Laxalde <denis.laxalde@logilab.fr>
Mon, 27 Feb 2017 17:13:45 +0100
changeset 11994 c1a6b18c141f
parent 11993 07af2c2c264b
child 11995 7d56ae4aa0ee
[skeleton] Drop logging configuration from development.ini This is actually not useful as logging is already initialized and configure "somewhere else" where the repository is started.
cubicweb/skeleton/development.ini.tmpl
--- a/cubicweb/skeleton/development.ini.tmpl	Mon Feb 27 14:49:32 2017 +0100
+++ b/cubicweb/skeleton/development.ini.tmpl	Mon Feb 27 17:13:45 2017 +0100
@@ -38,40 +38,3 @@
 [server:main]
 use = egg:waitress#main
 listen = 127.0.0.1:6543 [::1]:6543
-
-###
-# logging configuration
-# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
-###
-
-[loggers]
-keys = root, cubicweb_%(cubename)s, cubicweb
-
-[handlers]
-keys = console
-
-[formatters]
-keys = generic
-
-[logger_root]
-level = INFO
-handlers = console
-
-[logger_cubicweb]
-level = INFO
-handlers = console
-qualname = cubicweb
-
-[logger_cubicweb_%(cubename)s]
-level = DEBUG
-handlers = console
-qualname = cubicweb_%(cubename)s
-
-[handler_console]
-class = StreamHandler
-args = (sys.stderr,)
-level = NOTSET
-formatter = generic
-
-[formatter_generic]
-format = %%(asctime)s %%(levelname)-5.5s [%%(name)s:%%(lineno)s][%%(threadName)s] %%(message)s