summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-13 16:09:37 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-13 16:09:37 +0100
commit19640b7a0b59149e21dd68947e7db794967a62b9 (patch)
treeaae8e2afea53b8377e940d998ed2e3d323d668e7 /src
parente94b8b6eef58367bf97788d7aed340ab051568fb (diff)
Less severe error message when there is no config file.
Diffstat (limited to 'src')
-rw-r--r--src/lib/config.cc4
1 files 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";
}
}