diff --git a/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h b/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h index 67a959c50..fbc46fc5d 100644 --- a/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h +++ b/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h @@ -239,4 +239,10 @@ namespace Debug } } } } //LiveSupport and Core namespaces -#define DEBUG_BLOCK LiveSupport::Core::Debug::Block uniquelyNamedStackAllocatedStandardBlock( __PRETTY_FUNCTION__ ); +#define DEBUG_BLOCK Debug::Block uniquelyNamedStackAllocatedStandardBlock( __PRETTY_FUNCTION__ ); + +/// Standard function announcer +#define DEBUG_FUNC_INFO { debug() << "[" __PRETTY_FUNCTION__ "]" << endl; } + +/// Announce a line +#define DEBUG_LINE_INFO { debug() << "[" __PRETTY_FUNCTION__ "]" << "Line: " << __LINE__ << endl; }