diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-08-13 16:09:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-08-13 16:09:37 +0100 |
| commit | 19640b7a0b59149e21dd68947e7db794967a62b9 (patch) | |
| tree | aae8e2afea53b8377e940d998ed2e3d323d668e7 /src | |
| parent | e94b8b6eef58367bf97788d7aed340ab051568fb (diff) | |
Less severe error message when there is no config file.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/config.cc | 4 |
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"; } } |
