From d40d806224e33e206dc9b97e4e8c3e1dcd593119 Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Sun, 5 Mar 2017 09:52:32 +0100 Subject: [PATCH] slightly more informative error log message --- rtgui/dynamicprofile.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rtgui/dynamicprofile.cc b/rtgui/dynamicprofile.cc index 27d4f0178..86b8126e8 100644 --- a/rtgui/dynamicprofile.cc +++ b/rtgui/dynamicprofile.cc @@ -238,7 +238,8 @@ PartialProfile *loadDynamicProfile(const ImageMetaData *im) if (p != nullptr) { p->applyTo(ret->pparams); } else { - printf("ERROR loading matching profile\n"); + printf("ERROR loading matching profile from: %s\n", + rule.profilepath.c_str()); } } }