Plasma Engine  2.0
Loading...
Searching...
No Matches
Log_inl.h
1#pragma once
2
3#if PL_DISABLED(PL_COMPILE_FOR_DEVELOPMENT)
4
5inline void plLog::Dev(plLogInterface* /*pInterface*/, const plFormatString& /*string*/) {}
6
7#endif
8
9#if PL_DISABLED(PL_COMPILE_FOR_DEBUG)
10
11inline void plLog::Debug(plLogInterface* /*pInterface*/, const plFormatString& /*string*/)
12{
13}
14
15#endif
Implements formating of strings with placeholders and formatting options.
Definition FormatString.h:59
static void Dev(plLogInterface *pInterface, const plFormatString &string)
Status information that is nice to have during development.
static void Debug(plLogInterface *pInterface, const plFormatString &string)
Status information during debugging. Very verbose. Usually only temporarily added to the code.
Base class for all logging classes.
Definition Log.h:77