mirror of
https://github.com/Relintai/godot-lportal.git
synced 2024-11-11 10:52:09 +01:00
19 lines
242 B
C++
19 lines
242 B
C++
|
#include "ldebug.h"
|
||
|
|
||
|
namespace Lawn
|
||
|
{
|
||
|
|
||
|
int LDebug::m_iLoggingLevel = 0; // 2
|
||
|
int LDebug::m_iWarningLevel = 0;
|
||
|
int LDebug::m_iTabDepth = 0;
|
||
|
bool LDebug::m_bRunning = false;
|
||
|
|
||
|
|
||
|
void LDebug::print(String sz)
|
||
|
{
|
||
|
print_line(sz);
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace
|