diff --git a/Src/Menu/DevLogViewer.gd b/Src/Menu/DevLogViewer.gd index a56f883..67a549b 100644 --- a/Src/Menu/DevLogViewer.gd +++ b/Src/Menu/DevLogViewer.gd @@ -7,7 +7,7 @@ func _ready(): #warning-ignore:return_value_discarded $HTTPRequest.connect("request_completed", self, "requestLogComplete") $HTTPRequest.request(Global.NB_PLUGIN_CONFIG.devlogUrl) - print(Global.NB_PLUGIN_CONFIG.devlogUrl) + #print(Global.NB_PLUGIN_CONFIG.devlogUrl) func requestLogComplete(_result, response_code, _headers, body): if response_code == 200: diff --git a/Src/_Autoloads/Global.gd b/Src/_Autoloads/Global.gd index 0a0049c..f523687 100644 --- a/Src/_Autoloads/Global.gd +++ b/Src/_Autoloads/Global.gd @@ -29,7 +29,7 @@ const GAME_VERSION = 1.0 const CONFIG_VERSION = 3 # Used for config migration # Debug Options -const DEBUG = true +const DEBUG = false # Nb Plugin Config