From a2f64f2aef30895ba91e6c1241f7db2ff6877757 Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Sun, 20 May 2018 18:35:10 +0100 Subject: [PATCH] Set Default Verbose To False --- control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control.lua b/control.lua index ab37fe20..95a73cbc 100644 --- a/control.lua +++ b/control.lua @@ -27,7 +27,7 @@ error = function(err) end end -- Replaces the base require function and verbose function -_verbose = true -- Set to true for more on the loading of the files +_verbose = false -- Set to true for more on the loading of the files function verbose(str) if _verbose then log(str) print(str) end end verbose('============================= START =============================') require_return_err = false -- Set to false when removing files; set to true for debuging