[Rawstudio-commit] r2750 - trunk/plugins/lensfun

Anders Kvist anders at kvistmail.dk
Tue Nov 17 00:01:04 CET 2009


Author: akv
Date: 2009-11-17 00:01:04 +0100 (Tue, 17 Nov 2009)
New Revision: 2750

Modified:
   trunk/plugins/lensfun/lensfun.c
Log:
Changed debug to warnings when lens or camera isn't known.

Modified: trunk/plugins/lensfun/lensfun.c
===================================================================
--- trunk/plugins/lensfun/lensfun.c	2009-11-16 22:58:25 UTC (rev 2749)
+++ trunk/plugins/lensfun/lensfun.c	2009-11-16 23:01:04 UTC (rev 2750)
@@ -376,7 +376,7 @@
 
 		if (!cameras)
 		{
-			g_debug("camera not found (make: \"%s\" model: \"%s\")", lensfun->make, lensfun->model);
+			g_warning("camera not found (make: \"%s\" model: \"%s\")", lensfun->make, lensfun->model);
 			rs_filter_response_set_image(response, input);
 			g_object_unref(input);
 			return response;
@@ -398,7 +398,7 @@
 
 		if (!lenses)
 		{
-			g_debug("lens not found - disabling lens correction");
+			g_warning("lens not found");
 			rs_filter_response_set_image(response, input);
 			g_object_unref(input);
 			return response;




More information about the Rawstudio-commit mailing list