summaryrefslogtreecommitdiffhomepage
path: root/config.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-01 21:16:19 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-01 21:16:19 +0100
commita72cd70af957a06ae870d93314b4ed0f3625f6ee (patch)
tree9da93fc597d26ac3cec93a4518649871453a7f94 /config.cpp
parent6c339d8aab380a191fe3fce7ca7dc7c09e252ebd (diff)
Adjust to Debian 11 build
Diffstat (limited to 'config.cpp')
-rw-r--r--config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.cpp b/config.cpp
index 7474a1d..4488e84 100644
--- a/config.cpp
+++ b/config.cpp
@@ -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;
}
}