[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.
--- 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