We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 845bab5 commit 685e2a5Copy full SHA for 685e2a5
console/executor_store.cpp
@@ -116,7 +116,7 @@ code executor::open_store_coded(bool details)
116
return ec;
117
}
118
119
- logger(BN_DATABASE_STARTED);
+ logger(store_.is_dirty() ? BN_DATABASE_STARTED_DIRTY : BN_DATABASE_STARTED);
120
return error::success;
121
122
console/localize.hpp
@@ -171,7 +171,9 @@ namespace node {
171
#define BN_NODE_INTERRUPT \
172
"Press CTRL-C to stop the node."
173
#define BN_DATABASE_STARTED \
174
- "Database is started."
+ "Database is started (clean)."
175
+#define BN_DATABASE_STARTED_DIRTY \
176
+ "Database is started (dirty)."
177
#define BN_NETWORK_STARTING \
178
"Please wait while network is starting..."
179
#define BN_NODE_START_FAIL \
0 commit comments