update an variables name

This commit is contained in:
Merith-TK 2022-08-28 19:21:26 -07:00
parent 4628fc7519
commit 57189b093a

View file

@ -6,8 +6,8 @@ import (
) )
var ( var (
Enabled bool = false Enabled bool = false
DebugTitle string = "DEBUG" Title string = "DEBUG"
) )
func init() { func init() {
@ -22,6 +22,6 @@ func init() {
func Print(message ...any) { func Print(message ...any) {
if Enabled { if Enabled {
log.Println(DebugTitle, message) log.Println(Title, message)
} }
} }