Re: overriding cxf props set in config file

2008-11-17 Thread nmt999
ler.formatter", >> "java.util.logging.SimpleFormatter"); >> >> it doesn't see to work. Is there a way i can override in the application >> the cxf logging properties set in the config file. >> >> Regards >> nmt > > > > -- > Daniel Kulp > [EMAIL PROTECTED] > http://dankulp.com/blog > > -- View this message in context: http://www.nabble.com/overriding-cxf-props-set-in-config-file-tp20544313p20546775.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: overriding cxf props set in config file

2008-11-17 Thread Daniel Kulp
It's all straight java.util.logging logging stuff. Thus, something like: Logger log = Logger.getLogger("org.apache.cxf"); for (Handler handler : log.getHandlers()) { if (handler instanceof ConsoleHandler) { handler.setLevel(Level.WARNING); handler.setFormatter(new SimpleFormatt

overriding cxf props set in config file

2008-11-17 Thread nmt999
ication the cxf logging properties set in the config file. Regards nmt -- View this message in context: http://www.nabble.com/overriding-cxf-props-set-in-config-file-tp20544313p20544313.html Sent from the cxf-user mailing list archive at Nabble.com.