[BugFix] fix qos log level

Signed-off-by: liubingxing <liubbingxing@gmail.com>
This commit is contained in:
liubingxing 2023-03-06 20:37:05 +08:00 committed by leonrayang
parent d06ae730e3
commit 599bb54dd9

View File

@ -678,7 +678,7 @@ func QosWriteDebugf(format string, v ...interface{}) {
if gLog == nil {
return
}
if UpdateLevel&gLog.level != gLog.level {
if DebugLevel&gLog.level != gLog.level {
return
}
s := fmt.Sprintf(format, v...)