mirror of
https://github.com/Relintai/godot-lportal.git
synced 2024-11-11 10:52:09 +01:00
487363a020
Can activate and deactive lportal now. Debugging visibility for a frame can be requested. Level of logging can be selected.
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
|