feat: rename package to logger

This commit is contained in:
Simon Cornet 2025-03-06 11:58:51 +01:00
commit 69002909b5
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
package logging
package logger
import (
"io"
@ -7,7 +7,7 @@ import (
var debug bool
// Enables debug logging if set to true. Default is false.
// Enables debug logger if set to true. Default is false.
func SetDebug(debugSetting bool) {
debug = debugSetting
if !debug {