提交 c469b6ea authored 作者: Thomas Mueller's avatar Thomas Mueller

Log output

上级 5718e574
......@@ -208,7 +208,7 @@ public class FileLock implements Runnable {
}
lastWrite = fs.getLastModified(fileName);
if (trace.isDebugEnabled()) {
trace.debug("save {0}", properties);
trace.debug("save " + properties);
}
return properties;
} catch (IOException e) {
......@@ -260,7 +260,7 @@ public class FileLock implements Runnable {
try {
Properties p2 = SortedProperties.loadProperties(fileName);
if (trace.isDebugEnabled()) {
trace.debug("load {0}", p2);
trace.debug("load " + p2);
}
return p2;
} catch (IOException e) {
......
......@@ -141,7 +141,7 @@ public class PageOutputStream {
private void storePage() {
if (trace.isDebugEnabled()) {
trace.debug("pageOut.storePage {0}", data);
trace.debug("pageOut.storePage " + data);
}
data.write();
}
......@@ -173,7 +173,7 @@ public class PageOutputStream {
*/
void fillPage() {
if (trace.isDebugEnabled()) {
trace.debug("pageOut.storePage fill {0}", data.getPos());
trace.debug("pageOut.storePage fill " + data.getPos());
}
reserve(data.getRemaining() + 1);
reserved -= data.getRemaining();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论