| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- // Copyright GoFrame gf 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 mlog
- import (
- "context"
- "github.com/gogf/gf/v2/os/gcmd"
- "github.com/gogf/gf/v2/os/genv"
- "github.com/gogf/gf/v2/os/glog"
- )
- const (
- headerPrintEnvName = "GF_CLI_MLOG_HEADER"
- )
- var (
- ctx = context.TODO()
- logger = glog.New()
- )
- func init() {
- logger.SetStack(false)
- if genv.Get(headerPrintEnvName).String() == "1" {
- logger.SetHeaderPrint(true)
- } else {
- logger.SetHeaderPrint(false)
- }
- if gcmd.GetOpt("debug") != nil || gcmd.GetOpt("gf.debug") != nil {
- logger.SetDebug(true)
- } else {
- logger.SetDebug(false)
- }
- }
- // SetHeaderPrint enables/disables header printing to stdout.
- func SetHeaderPrint(enabled bool) {
- logger.SetHeaderPrint(enabled)
- if enabled {
- _ = genv.Set(headerPrintEnvName, "1")
- } else {
- _ = genv.Set(headerPrintEnvName, "0")
- }
- }
- func Print(v ...interface{}) {
- logger.Print(ctx, v...)
- }
- func Printf(format string, v ...interface{}) {
- logger.Printf(ctx, format, v...)
- }
- func Fatal(v ...interface{}) {
- logger.Fatal(ctx, v...)
- }
- func Fatalf(format string, v ...interface{}) {
- logger.Fatalf(ctx, format, v...)
- }
- func Debug(v ...interface{}) {
- logger.Debug(ctx, v...)
- }
- func Debugf(format string, v ...interface{}) {
- logger.Debugf(ctx, format, v...)
- }
|