gf/g/g_logger.go

32 lines
708 B
Go
Raw Normal View History

// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
2018-09-26 09:58:49 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2018-09-26 09:58:49 +08:00
package g
import (
"github.com/gogf/gf/g/os/glog"
)
2019-02-27 22:17:09 +08:00
// Disable/Enabled debug of logging globally.
//
2018-10-30 23:58:10 +08:00
// 是否显示调试信息
func SetDebug(debug bool) {
glog.SetDebug(debug)
}
2019-02-27 22:17:09 +08:00
// Set the logging level globally.
//
2018-10-30 23:58:10 +08:00
// 设置日志的显示等级
func SetLogLevel(level int) {
glog.SetLevel(level)
}
2019-02-27 22:17:09 +08:00
// Get the global logging level.
//
2018-10-30 23:58:10 +08:00
// 获取设置的日志显示等级
func GetLogLevel() int {
return glog.GetLevel()
}