Skip to content

Commit

Permalink
Removed duplicit log in WarHandler
Browse files Browse the repository at this point in the history
Signed-off-by: David Matějček <dmatej@seznam.cz>
  • Loading branch information
dmatej committed Jun 29, 2022
1 parent 2cdfe0f commit 34ac1b9
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -168,14 +168,8 @@ public WebappClassLoader run() {

} catch(XMLStreamException xse) {
logger.log(Level.SEVERE, xse.getMessage(), xse);
if (logger.isLoggable(Level.FINE)) {
logger.log(Level.FINE, xse.getMessage(), xse);
}
} catch(IOException ioe) {
logger.log(Level.SEVERE, ioe.getMessage(), ioe);
if (logger.isLoggable(Level.FINE)) {
logger.log(Level.FINE, ioe.getMessage(), ioe);
}
}
cloader.start();
return cloader;
Expand Down

0 comments on commit 34ac1b9

Please sign in to comment.