12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Copyright GoFrame Author(https://github.com/gogf/gf). 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 (
- "fmt"
- "github.com/gogf/gf/os/glog"
- "github.com/gogf/gf/util/gutil"
- )
- const (
- frameCoreComponentNameLogger = "gf.core.component.logger"
- configNodeNameLogger = "logger"
- )
- // Log returns an instance of glog.Logger.
- // The parameter <name> is the name for the instance.
- func Log(name ...string) *glog.Logger {
- instanceName := glog.DefaultName
- if len(name) > 0 && name[0] != "" {
- instanceName = name[0]
- }
- instanceKey := fmt.Sprintf("%s.%s", frameCoreComponentNameLogger, instanceName)
- return instances.GetOrSetFuncLock(instanceKey, func() interface{} {
- logger := glog.Instance(instanceName)
- // To avoid file no found error while it's not necessary.
- if Config().Available() {
- var m map[string]interface{}
- nodeKey, _ := gutil.MapPossibleItemByKey(Config().GetMap("."), configNodeNameLogger)
- if nodeKey == "" {
- nodeKey = configNodeNameLogger
- }
- m = Config().GetMap(fmt.Sprintf(`%s.%s`, nodeKey, instanceName))
- if len(m) == 0 {
- m = Config().GetMap(nodeKey)
- }
- if len(m) > 0 {
- if err := logger.SetConfigWithMap(m); err != nil {
- panic(err)
- }
- }
- }
- return logger
- }).(*glog.Logger)
- }
|