From 5e7de844d3447b1d31c83fb7d9f4569c207d0219 Mon Sep 17 00:00:00 2001 From: Levente Batuska Date: Sun, 27 Oct 2024 02:17:39 +0200 Subject: [PATCH] fix(Logger): make Logbuffersize a var instead of const --- logger/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logger/logger.go b/logger/logger.go index 018fc04..a9f0811 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -9,7 +9,7 @@ import ( ) // Use this in the init() function to initialize the size of the buffered channel -const Logbuffersize int32 = 200 +var Logbuffersize int32 = 200 var DEBUG bool = true