add thread name to logger message from IndexWriter's infoStream

This commit is contained in:
mikemccand 2014-04-29 10:50:36 -04:00
commit fb53784e3b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public final class LoggerInfoStream extends InfoStream {
}
public void message(String component, String message) {
logger.trace("{}: {}", component, message);
logger.trace("{} {}: {}", Thread.currentThread().getName(), component, message);
}
public boolean isEnabled(String component) {