1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
gf/frame/gins/gins_log.go
John Guo ae4f14c2e2
add LevelPrint configuration for glog.Logger; add package internal/instance for grouped instance management feature; add default logger for panic message printing if no logger set in gcron.Cron (#2388)
* improve logging feature, add LevelPrint configuration for glog.Logger; add package internal/instance

* improve command build

* add default logger for panic message printing if no logger set

* up

* fix scheduler when timer triggers in less than one second for package gcron

* up
2023-01-06 14:15:30 +08:00

64 lines
2.0 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// 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.
package gins
import (
"context"
"fmt"
"github.com/gogf/gf/v2/internal/consts"
"github.com/gogf/gf/v2/internal/instance"
"github.com/gogf/gf/v2/os/glog"
"github.com/gogf/gf/v2/util/gutil"
)
// Log returns an instance of glog.Logger.
// The parameter `name` is the name for the instance.
// Note that it panics if any error occurs duration instance creating.
func Log(name ...string) *glog.Logger {
var (
ctx = context.Background()
instanceName = glog.DefaultName
)
if len(name) > 0 && name[0] != "" {
instanceName = name[0]
}
instanceKey := fmt.Sprintf("%s.%s", frameCoreComponentNameLogger, instanceName)
return instance.GetOrSetFuncLock(instanceKey, func() interface{} {
logger := glog.Instance(instanceName)
// To avoid file no found error while it's not necessary.
var (
configMap map[string]interface{}
loggerNodeName = consts.ConfigNodeNameLogger
)
// Try to find possible `loggerNodeName` in case-insensitive way.
if configData, _ := Config().Data(ctx); len(configData) > 0 {
if v, _ := gutil.MapPossibleItemByKey(configData, consts.ConfigNodeNameLogger); v != "" {
loggerNodeName = v
}
}
// Retrieve certain logger configuration by logger name.
certainLoggerNodeName := fmt.Sprintf(`%s.%s`, loggerNodeName, instanceName)
if v, _ := Config().Get(ctx, certainLoggerNodeName); !v.IsEmpty() {
configMap = v.Map()
}
// Retrieve global logger configuration if configuration for certain logger name does not exist.
if len(configMap) == 0 {
if v, _ := Config().Get(ctx, loggerNodeName); !v.IsEmpty() {
configMap = v.Map()
}
}
// Set logger config if config map is not empty.
if len(configMap) > 0 {
if err := logger.SetConfigWithMap(configMap); err != nil {
panic(err)
}
}
return logger
}).(*glog.Logger)
}