add trace logging for creation of new writer

This commit is contained in:
2018-01-21 08:36:40 +01:00
parent 740cb1cb2d
commit 9f45eb24ca

View File

@@ -164,7 +164,7 @@ public class TagsToFile implements AutoCloseable {
getOrInit(tags).addWriter(result); getOrInit(tags).addWriter(result);
METRICS_LOGGER_NEW_WRITER.debug("newPdbWriter took {}ms tags: ", (System.nanoTime() - start) / 1_000_000.0, tags); METRICS_LOGGER_NEW_WRITER.debug("newPdbWriter took {}ms tags: {}", (System.nanoTime() - start) / 1_000_000.0, tags);
return result; return result;
} catch (final IOException e) { } catch (final IOException e) {