Issue #678
This commit is contained in:
parent
008912fd5e
commit
7afc36064b
|
@ -559,6 +559,9 @@ public class AnnotationConfiguration extends AbstractConfiguration
|
|||
}
|
||||
|
||||
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())
|
||||
{
|
||||
|
@ -567,7 +570,7 @@ public class AnnotationConfiguration extends AbstractConfiguration
|
|||
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue