Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / TAO / tao / debug.cpp
blobeb23405852cbe72d801ebaabbe90cde73384299d
1 // THREADING NOTE: the global values here (debug_{level,filter,stream)
2 // are assumed to be modified "safely", e.g. in the main thread as
3 // part of process initialization. They are treated as immutable
4 // values through all of this debuging package.
5 //
6 // XXX on Windows, make it always use OutputDebugString () instead of stdio.
8 #include "tao/debug.h"
10 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
12 TAO_Export unsigned int TAO_debug_level = 0;
14 TAO_Export unsigned int TAO_orbdebug = 0;
16 TAO_Export ACE_Log_Category TAO_log_category("TAO");
18 TAO_END_VERSIONED_NAMESPACE_DECL