diff --git a/rtengine/dcp.cc b/rtengine/dcp.cc index c6eab3b2a..3c6c54d33 100644 --- a/rtengine/dcp.cc +++ b/rtengine/dcp.cc @@ -1131,13 +1131,17 @@ DCPProfile::DCPProfile(const Glib::ustring& filename) : }); if (file == nullptr) { - printf ("Unable to load DCP profile '%s' !", filename.c_str()); + if (settings->verbose) { + printf ("Unable to load DCP profile '%s' !\n", filename.c_str()); + } return; } DCPMetadata md(file.get()); if (!md.parse()) { - printf ("Unable to load DCP profile '%s'.", filename.c_str()); + if (settings->verbose) { + printf ("Unable to load DCP profile '%s'.\n", filename.c_str()); + } return; }