修复一些小问题

This commit is contained in:
UnKownOwO
2022-11-24 11:56:37 +08:00
parent 01bcaa0309
commit 6dd7cb3f43
3088 changed files with 26 additions and 91314 deletions

View File

@@ -116,7 +116,6 @@ func (l *Logger) Debug(msg string, param ...any) {
logInfo.goroutineId = l.getGoroutineId()
}
l.logInfoChan <- logInfo
return
}
func (l *Logger) Info(msg string, param ...any) {
@@ -135,7 +134,6 @@ func (l *Logger) Info(msg string, param ...any) {
logInfo.goroutineId = l.getGoroutineId()
}
l.logInfoChan <- logInfo
return
}
func (l *Logger) Error(msg string, param ...any) {
@@ -154,7 +152,6 @@ func (l *Logger) Error(msg string, param ...any) {
logInfo.goroutineId = l.getGoroutineId()
}
l.logInfoChan <- logInfo
return
}
func getLevelInt(level string) (ret int) {