Skip to content

Commit

Permalink
Issue #678
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Jul 7, 2016
1 parent 008912f commit 7afc360
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,9 @@ public void run()
}

boolean timeout = !latch.await(getMaxScanWait(context), TimeUnit.SECONDS);
long elapsedMs = TimeUnit.MILLISECONDS.convert(System.nanoTime()-start, TimeUnit.NANOSECONDS);

LOG.info("Scanning elapsed time={}ms",elapsedMs);

if (LOG.isDebugEnabled())
{
Expand All @@ -567,7 +570,7 @@ public void run()

LOG.debug("Scanned {} container path jars, {} WEB-INF/lib jars, {} WEB-INF/classes dirs in {}ms for context {}",
_containerPathStats.getTotal(), _webInfLibStats.getTotal(), _webInfClassesStats.getTotal(),
(TimeUnit.MILLISECONDS.convert(System.nanoTime()-start, TimeUnit.NANOSECONDS)),
elapsedMs,
context);
}

Expand Down

0 comments on commit 7afc360

Please sign in to comment.