diff options
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/macro_parser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/macro_parser.cc b/server/src/macro_parser.cc index c317482..aeeb84f 100644 --- a/server/src/macro_parser.cc +++ b/server/src/macro_parser.cc @@ -53,7 +53,7 @@ static void start_hndl(void *p, const char *el, const char **attr) { MacroParser *parser = (MacroParser*)XML_GetUserData(p); - printf("Start tag [%s]\n", el); + // printf("Start tag [%s]\n", el); // Convert to comfy C++ values... std::string name = el; @@ -114,7 +114,7 @@ static void end_hndl(void *p, const char *el) { MacroParser *parser = (MacroParser*)XML_GetUserData(p); - printf("End tag [%s]\n", el); + // printf("End tag [%s]\n", el); if(std::string("include") != el) parser->stack.pop_back(); |