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 ( import (
"io" "io"
@ -7,7 +7,7 @@ import (
var debug bool 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) { func SetDebug(debugSetting bool) {
debug = debugSetting debug = debugSetting
if !debug { if !debug {

View file

@ -1,4 +1,4 @@
package logging package logger
import ( import (
"log" "log"

View file

@ -1,4 +1,4 @@
package logging package logger
var applicationName = "MyApp" var applicationName = "MyApp"