fixed append bug

This commit is contained in:
Aidan 2020-06-21 13:59:09 -07:00
parent fe5afcb345
commit 1889942db8
No known key found for this signature in database
GPG key ID: 327711E983899316
3 changed files with 9 additions and 2 deletions

View file

@ -35,6 +35,10 @@ func SetLogLvl(lvl int64) {
}
}
func GetLogLvl() int64 {
return logLevel
}
func Log(lvl int, msg, context string) {
if int64(lvl) > logLevel {
return