From a2018ef0d7547057e7dadea82f2e568413033195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Wed, 28 Oct 2015 20:54:23 +0100 Subject: [PATCH] fixes print of config.json two times --- src/config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cc b/src/config.cc index bacee9e..c4bef50 100644 --- a/src/config.cc +++ b/src/config.cc @@ -20,7 +20,7 @@ void MainConfig::read() { retrieve_config(); } catch(const std::exception &e) { - Singleton::terminal()->print("Error reading "+config_json + "config.json: "+e.what()+"\n"); + Singleton::terminal()->print("Error reading "+config_json+": "+e.what()+"\n"); std::stringstream ss; ss << configjson; boost::property_tree::read_json(ss, cfg);