From 1415f0646f608d83b484eb3477cf2945c4338423 Mon Sep 17 00:00:00 2001 From: Cory Petkovsek <632766+TokisanGames@users.noreply.github.com> Date: Mon, 17 Jul 2023 01:26:01 +0700 Subject: [PATCH] Default debug level to ERROR --- src/terrain_3d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terrain_3d.cpp b/src/terrain_3d.cpp index ce69a848e..5197a1dbf 100644 --- a/src/terrain_3d.cpp +++ b/src/terrain_3d.cpp @@ -11,7 +11,7 @@ /////////////////////////// // Initialize static member variable -int Terrain3D::_debug_level{ DEBUG }; +int Terrain3D::_debug_level{ ERROR }; /** * This is a proxy for _process(delta) called by _notification() due to