Correcting dumps to only occur during DEBUG
This commit is contained in:
parent
db9997a792
commit
e9ab0b3994
|
@ -136,7 +136,7 @@ public class UntrustedWSServer extends ContainerLifeCycle implements UntrustedWS
|
|||
if (LOG.isDebugEnabled())
|
||||
{
|
||||
LOG.debug("WebSocket Server URI: " + wsUri.toASCIIString());
|
||||
server.dump();
|
||||
LOG.debug("{}", server.dump());
|
||||
}
|
||||
|
||||
super.doStart();
|
||||
|
|
|
@ -155,7 +155,7 @@ public class WSServer extends LocalServer implements LocalFuzzer.Provider
|
|||
webapp.start();
|
||||
if (LOG.isDebugEnabled())
|
||||
{
|
||||
webapp.dump(System.err);
|
||||
LOG.debug("{}", webapp.dump());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue