frp/pkg/util/log/log.go

93 lines
2.1 KiB
Go
Raw Normal View History

2016-03-14 11:18:24 +08:00
// Copyright 2016 fatedier, fatedier@gmail.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2016-01-27 21:24:36 +08:00
package log
import (
"fmt"
2017-03-09 02:03:47 +08:00
"github.com/fatedier/beego/logs"
2016-01-27 21:24:36 +08:00
)
2019-01-31 16:54:46 +08:00
// Log is the under log object
2016-01-27 21:24:36 +08:00
var Log *logs.BeeLogger
func init() {
2017-05-17 16:02:31 +08:00
Log = logs.NewLogger(200)
2016-01-27 21:24:36 +08:00
Log.EnableFuncCallDepth(true)
Log.SetLogFuncCallDepth(Log.GetLogFuncCallDepth() + 1)
}
func InitLog(logFile string, logLevel string, maxdays int64, disableLogColor bool) {
SetLogFile(logFile, maxdays, disableLogColor)
2016-01-27 21:24:36 +08:00
SetLogLevel(logLevel)
}
2019-01-31 16:54:46 +08:00
// SetLogFile to configure log params
func SetLogFile(logFile string, maxdays int64, disableLogColor bool) {
if logFile == "console" {
params := ""
if disableLogColor {
2022-08-29 01:02:53 +08:00
params = `{"color": false}`
}
2022-08-29 01:02:53 +08:00
_ = Log.SetLogger("console", params)
2016-01-27 21:24:36 +08:00
} else {
params := fmt.Sprintf(`{"filename": "%s", "maxdays": %d}`, logFile, maxdays)
2022-08-29 01:02:53 +08:00
_ = Log.SetLogger("file", params)
2016-01-27 21:24:36 +08:00
}
}
2019-01-31 16:54:46 +08:00
// SetLogLevel set log level, default is warning
2017-05-17 16:02:31 +08:00
// value: error, warning, info, debug, trace
2016-01-27 21:24:36 +08:00
func SetLogLevel(logLevel string) {
2022-08-29 01:02:53 +08:00
var level int
2016-01-27 21:24:36 +08:00
switch logLevel {
case "error":
level = 3
case "warn":
level = 4
case "info":
level = 6
case "debug":
level = 7
2017-04-25 00:34:14 +08:00
case "trace":
level = 8
2016-01-27 21:24:36 +08:00
default:
2022-08-29 01:02:53 +08:00
level = 4 // warning
2016-01-27 21:24:36 +08:00
}
Log.SetLevel(level)
}
// wrap log
2017-03-09 02:03:47 +08:00
2016-01-27 21:24:36 +08:00
func Error(format string, v ...interface{}) {
Log.Error(format, v...)
}
func Warn(format string, v ...interface{}) {
Log.Warn(format, v...)
}
func Info(format string, v ...interface{}) {
Log.Info(format, v...)
}
func Debug(format string, v ...interface{}) {
Log.Debug(format, v...)
}
2017-03-09 02:03:47 +08:00
2017-04-25 00:34:14 +08:00
func Trace(format string, v ...interface{}) {
Log.Trace(format, v...)
}