summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-04-22 09:21:10 (GMT)
committerGitHub <noreply@github.com>2018-04-22 09:21:10 (GMT)
commitc0447bfdd417102090b19f656a4986486116f42e (patch)
treedb074f2c79a65462dc7660705d6a51a770d0fe9e /src
parent196c6ffa3310237b79a28e8f7ed94f2d61142d39 (diff)
parent3c0327c1f8461a029c83b744d076617e28cd26bf (diff)
downloadDoxygen-c0447bfdd417102090b19f656a4986486116f42e.zip
Doxygen-c0447bfdd417102090b19f656a4986486116f42e.tar.gz
Doxygen-c0447bfdd417102090b19f656a4986486116f42e.tar.bz2
Merge pull request #666 from albert-github/feature/bug_commentcnv_debug
Debug output commentcnv independent of QUIET setting
Diffstat (limited to 'src')
-rw-r--r--src/commentcnv.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l
index 44e2543..aca7300 100644
--- a/src/commentcnv.l
+++ b/src/commentcnv.l
@@ -1093,7 +1093,9 @@ void convertCppComments(BufStr *inBuf,BufStr *outBuf,const char *fileName)
if (Debug::isFlagSet(Debug::CommentCnv))
{
g_outBuf->at(g_outBuf->curPos())='\0';
- msg("-------------\n%s\n-------------\n",g_outBuf->data());
+ Debug::print(Debug::CommentCnv,0,"-----------\nCommentCnv: %s\n"
+ "output=[\n%s]\n-----------\n",fileName,g_outBuf->data()
+ );
}
printlex(yy_flex_debug, FALSE, __FILE__, fileName);
}