# HG changeset patch # User Matti Hamalainen # Date 1559660052 -10800 # Node ID 0b93150700016d4ea06de68f27c93529754ca0d5 # Parent 3b89ad9355f25ed101c68bf1abce67b7b4076d07 Lower verbosity threshold the "Using ... output" when converting to image. diff -r 3b89ad9355f2 -r 0b9315070001 tools/gfxconv.c --- a/tools/gfxconv.c Tue Jun 04 17:53:44 2019 +0300 +++ b/tools/gfxconv.c Tue Jun 04 17:54:12 2019 +0300 @@ -1531,7 +1531,7 @@ case DM_PIXFMT_GRAYSCALE : str = "grayscale"; break; default : str = "???"; break; } - dmMsg(2, "Using %s output.\n", str); + dmMsg(1, "Using %s output.\n", str); } if ((res = dmf_open_stdio(filename, "wb", &fp)) != DMERR_OK)