未验证 提交 34f2b175 编写于 作者: H HouliangQi 提交者: GitHub

lowering the logging level from debug to trace when serialize meta (#3005)

上级 3f5af4ac
......@@ -813,7 +813,7 @@ public class SyncLogDequeSerializer implements StableEntryManager {
private void serializeMeta(LogManagerMeta meta) {
File tempMetaFile = SystemFileFactory.INSTANCE.getFile(logDir + LOG_META_TMP);
tempMetaFile.getParentFile().mkdirs();
logger.debug("Serializing log meta into {}", tempMetaFile.getPath());
logger.trace("Serializing log meta into {}", tempMetaFile.getPath());
try (FileOutputStream tempMetaFileOutputStream = new FileOutputStream(tempMetaFile)) {
ReadWriteIOUtils.write(minAvailableVersion, tempMetaFileOutputStream);
ReadWriteIOUtils.write(maxAvailableVersion, tempMetaFileOutputStream);
......@@ -835,7 +835,7 @@ public class SyncLogDequeSerializer implements StableEntryManager {
// rebuild meta stream
this.meta = meta;
logger.debug("Serialized log meta into {}", tempMetaFile.getPath());
logger.trace("Serialized log meta into {}", tempMetaFile.getPath());
}
@Override
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册