diff gfxconv.c @ 465:ffd5e730d313

Adjust verbosity levels.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 04 Nov 2012 16:40:37 +0200
parents 4204e9ea8ae1
children 0bfa6a15bb46
line wrap: on
line diff
--- a/gfxconv.c	Sun Nov 04 16:36:21 2012 +0200
+++ b/gfxconv.c	Sun Nov 04 16:40:37 2012 +0200
@@ -827,7 +827,7 @@
     if (optInFormat == FFMT_AUTO && optInFilename != NULL)
     {
         char *dext = strrchr(optInFilename, '.');
-        dmMsg(2, "Trying to determine file format by extension.\n");
+        dmMsg(4, "Trying to determine file format by extension.\n");
         if (dext)
         {
             dmGetFormatByExt(dext + 1, &optInFormat, &optInSubFormat);
@@ -883,7 +883,7 @@
     {
         DMImageFormat *ifmt = NULL;
         int index;
-        dmMsg(2, "Trying to probe image formats.\n");
+        dmMsg(4, "Trying to probe image formats.\n");
         if (dmImageProbeGeneric(dataBuf + optInSkip, dataSize - optInSkip, &ifmt, &index) > 0)
         {
             optInFormat = FFMT_IMAGE;