diff options
| author | Dan Engelbrecht <[email protected]> | 2023-05-16 19:05:08 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2023-05-16 19:05:08 +0200 |
| commit | bf1e7671f4b0bbc2925ded7b2480ff90e5fef2f0 (patch) | |
| tree | f38e8dda5c700eff50db6b6004a5d90ced225491 | |
| parent | exit without SIGABRT if exception is thrown during startup (#313) (diff) | |
| download | zen-bf1e7671f4b0bbc2925ded7b2480ff90e5fef2f0.tar.xz zen-bf1e7671f4b0bbc2925ded7b2480ff90e5fef2f0.zip | |
demote state_marker deletion detection to warning
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/zenserver/zenserver.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bbb47480c..c8e8062a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Bugfix: Improve error handling when processing requests in http asio - Bugfix: Error out if `test` is passed to zenserver in release builds (tests are only compiled in for debug) - Bugfix: Gracefully exit with error code if problems arise during startup (used to cause abort termination) +- Improvement: Change state_marker detection (deletion of DDC folder) log to WARN, it is not an error but useful information in the log output - Improvement: Added logging when bad chunks are detected in `BlockStore` - Improvement: `zen::SetCurrentThreadName` now also sets trace (Insights) thread name - Improvement: All thread pool threads now have names diff --git a/src/zenserver/zenserver.cpp b/src/zenserver/zenserver.cpp index ac743adef..827d5d2db 100644 --- a/src/zenserver/zenserver.cpp +++ b/src/zenserver/zenserver.cpp @@ -565,7 +565,7 @@ public: std::filesystem::path StateMarkerPath = m_DataRoot / "state_marker"; if (!std::filesystem::exists(StateMarkerPath)) { - ZEN_ERROR("state marker at {} has been deleted, exiting", StateMarkerPath); + ZEN_WARN("state marker at {} has been deleted, exiting", StateMarkerPath); RequestExit(1); return; } |