14 unsigned m_RewritingCounter;
15 unsigned m_ModuleCounter;
16 unsigned m_TurtleCounter;
17 unsigned m_QueryCounter;
19 Log(): m_RewritingCounter(0), m_ModuleCounter(0), m_TurtleCounter(0), m_QueryCounter(0) {}
30 void output(
const char * str )
34 case OUTPUTDEBUGSTRING:
35 OutputDebugStringA( str );
48 if(!logInst) logInst =
new Log();
55 OutputDebugStringA( str.c_str() );
56 output( str.c_str() );
61 std::stringstream str;
63 OutputDebugStringA( str.str().c_str() );