diff --git a/debug.go b/debug.go index 942ed2c..4911ae8 100644 --- a/debug.go +++ b/debug.go @@ -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 { diff --git a/logging.go b/logging.go index 7a7a587..d7d32fe 100644 --- a/logging.go +++ b/logging.go @@ -1,4 +1,4 @@ -package logging +package logger import ( "log" diff --git a/prefix.go b/prefix.go index b9bdd59..2808c30 100644 --- a/prefix.go +++ b/prefix.go @@ -1,4 +1,4 @@ -package logging +package logger var applicationName = "MyApp"