Explicitly enable eventlet wsgi logging

the INFO level logging of eventlet.wsgi for api services running under
it (and not as proper WSGI apps under Apache2) is used by the StackLight
to monitor API response times and overall status, thus we need it
enabled as much by default as possible.

This patch:

- deduplicates handlers/propagate settings, propagate by default,
  rely on handlers configured once in the "root" logger
- explicitly add the eventlerwsgi logger to the list of enabled loggers
- change the default level for 'eventletwsgi' logger to INFO
- change the qualname for the eventlerwsgi logger to just
  'eventlet.wsgi' - some openstack services (e.g. Designate) set this as the
  "name" for the logger passed to the eventlet, by the virtue of
  hierarchical logging this will be applied to 'eventlet.wsgi.server' as
  well, fully backward compatible

These changes will not change how services log under apache2, as this
eventlerwsgi logger will simply be noop (as eventlet.wsgi won't
be emitting any logs).

Related-Issue: PROD-36253
Change-Id: I4b26ca67ac6d33670e92b6aef88899e7af725dfe
1 file changed