diff options
author | albert-github <albert.tests@gmail.com> | 2018-02-26 15:23:26 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-02-26 15:23:26 (GMT) |
commit | 3c0327c1f8461a029c83b744d076617e28cd26bf (patch) | |
tree | 281a230f4005e936d8565dea36e2315a0e4af993 | |
parent | b6f01ff09b17e5c2288f2418ef0a8f074456c357 (diff) | |
download | Doxygen-3c0327c1f8461a029c83b744d076617e28cd26bf.zip Doxygen-3c0327c1f8461a029c83b744d076617e28cd26bf.tar.gz Doxygen-3c0327c1f8461a029c83b744d076617e28cd26bf.tar.bz2 |
Debug output commentcnv independent of QUIET setting
The debug output of the commentcnv (-d commentcnv) should be independent of the setting of QUIET in the doxygen configuration file.
-rw-r--r-- | src/commentcnv.l | 4 |
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); } |