From ea3ab210241dae9c84feca5cab550b7262f5b6ea Mon Sep 17 00:00:00 2001 From: AntumDeluge Date: Mon, 29 May 2017 01:16:02 -0700 Subject: [PATCH] Change debug message in 'sneeker.log_debug' --- functions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.lua b/functions.lua index f8437fe..ed59e91 100644 --- a/functions.lua +++ b/functions.lua @@ -9,7 +9,7 @@ end -- Displays a message in log output only if 'sneeker.debug' is set to 'true' function sneeker.log_debug(message) if sneeker.debug then - sneeker.log('[DEBUG] ' .. message) + sneeker.log('DEBUG: ' .. message) end end