From 19640b7a0b59149e21dd68947e7db794967a62b9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 13 Aug 2015 16:09:37 +0100 Subject: [PATCH] Less severe error message when there is no config file. --- src/lib/config.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/config.cc b/src/lib/config.cc index cc62bfed3..657178eba 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -294,9 +294,9 @@ Config::instance () /* configuration load failed; never mind, just stick with the default. */ - cerr << "dcpomatic: failed to load configuration (" << e.what() << ")\n"; + cerr << "dcpomatic: warning: configuration did not load (" << e.what() << "); using defaults\n"; } catch (...) { - cerr << "dcpomatic: failed to load configuration\n"; + cerr << "dcpomatic: warning: configuration did not load; using defaults\n"; } } -- 2.30.2