diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-01 21:16:19 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-01 21:16:19 +0100 |
commit | a72cd70af957a06ae870d93314b4ed0f3625f6ee (patch) | |
tree | 9da93fc597d26ac3cec93a4518649871453a7f94 /config.cpp | |
parent | 6c339d8aab380a191fe3fce7ca7dc7c09e252ebd (diff) |
Adjust to Debian 11 build
Diffstat (limited to 'config.cpp')
-rw-r--r-- | config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ Config::Config(const std::string& config_filename): m_dataPath{default_datapath} m_dataPath = tree.get<std::string>("config.datapath", default_datapath); m_maxage = tree.get<uint64_t>("config.maxage", default_maxage); } catch (const std::exception& ex) { - std::cerr << "Error reading config file " << config_filename << ". Using " << default_datapath << "." << std::endl; + std::cerr << "Error reading config file " << config_filename << ". Using defaults." << std::endl; } } |