fix(Logger): make Logbuffersize a var instead of const

This commit is contained in:
2024-10-27 02:17:39 +02:00
parent f50717c815
commit 5e7de844d3

View File

@@ -9,7 +9,7 @@ import (
) )
// Use this in the init() function to initialize the size of the buffered channel // 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 var DEBUG bool = true