On Tue, 2007-11-13 at 22:24 +0100, Manuel Bilderbeek wrote: 
> When running Doxygen I get loads (100s) of lines with just this content:
> 
> format: png, adding :gd
> format: cmap, not adding anything
> [...]
Same problem here.

On Sun, 2008-04-20 at 21:26 +0200, Ludovic Rousseau wrote:
> This "error" message comes from the Debian patch
> debian/patches/gd-renderer.dpatch
> It looks like it is NOT and error message but just a debug log or
> something similar.
> 
> So just ignore this output.
Hard to do when important warnings are drowning between those pointless
"format:"-warnings.

Having a look at gd-renderer.dpatch I don't really see the point of the
fprintf-lines. I do agree that this could be some sort of debug log,
thus we should certainly bother the user in debug-mode (doxygen -d)
only, right? I suggest changing lines

fprintf (stderr, "format: %s, adding :gd\n", format);
[...]
fprintf (stderr, "format: %s, not adding anything\n", format);
[...]
fflush (stderr);

of the patch to something like

Debug::print (Debug::ExtCmd, 0, "format: %s, adding :gd\n", format);
[...]
Debug::print (Debug::ExtCmd, 0, "format: %s, not adding anything\n",
format);

to make use of doxygen's internal debugging system instead.


Marius




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to