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

Log usage of dangerous features.

上级 29e2a7ef
......@@ -2275,6 +2275,12 @@ public class Database implements DataHandler {
public void setLogMode(int log) {
if (pageStore != null) {
if (log != PageStore.LOG_MODE_SYNC ||
pageStore.getLogMode() != PageStore.LOG_MODE_SYNC) {
// write the log mode in the trace file when enabling or
// disabling a dangerous mode
getTrace().error("log=" + log, null);
}
pageStore.setLogMode(log);
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论