From 8fab267ea6ff0a77fd0689cc90689a3850c2ec74 Mon Sep 17 00:00:00 2001 From: Aaron Rossetto Date: Thu, 12 Dec 2019 08:46:07 -0600 Subject: prefs: Output debug trace when config file cannot be located or loaded --- host/lib/utils/config_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib/utils/config_parser.cpp') diff --git a/host/lib/utils/config_parser.cpp b/host/lib/utils/config_parser.cpp index dfd8d1b8b..c46671623 100644 --- a/host/lib/utils/config_parser.cpp +++ b/host/lib/utils/config_parser.cpp @@ -13,7 +13,7 @@ using namespace uhd; config_parser::config_parser(const std::string &path) { - if (not path.empty() and boost::filesystem::exists(path)) { + if (not path.empty()) { try { boost::property_tree::ini_parser::read_ini(path, _pt); } catch (const boost::property_tree::ini_parser_error &) { -- cgit v1.2.3