-
Notifications
You must be signed in to change notification settings - Fork 66
Closed
Description
3rd party logging infrastructure, only console messages will be forwarded (actually pulled by the host). In contrast, the logger in ExecutionContext will send a message to the host (push to the host).
This means all logging of libraries that use the standard java.util.logging infrastructure will be send to /dev/null or if the default console handler is used it will work more or less.
I think it would be useful to :
- send this logging to the host too
- configure per logger name what gets send to the host by setting the log level
e.g.:- a setting
(com.microsoft.jdbc.* , FINEST)will log data from level FINE to all logger with a name starting withcom.microsoft.jdbc - a setting
(com.microsoft.jdbc.internal.DriverX, OFF)will not log data from all loggers namedcom.microsoft.jdbc.internal.DriverX
- a setting
- should the default be
OFForINFO?