mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
62 lines
2.0 KiB
Go
62 lines
2.0 KiB
Go
// 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 errors provides functionalities to manipulate errors for internal usage purpose.
|
|
package errors
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/internal/command"
|
|
)
|
|
|
|
// StackMode is the mode that printing stack information in StackModeBrief or StackModeDetail mode.
|
|
type StackMode string
|
|
|
|
const (
|
|
// commandEnvKeyForBrief is the command environment name for switch key for brief error stack.
|
|
// Deprecated: use commandEnvKeyForStackMode instead.
|
|
commandEnvKeyForBrief = "gf.gerror.brief"
|
|
|
|
// commandEnvKeyForStackMode is the command environment name for switch key for brief error stack.
|
|
commandEnvKeyForStackMode = "gf.gerror.stack.mode"
|
|
)
|
|
|
|
const (
|
|
// StackModeBrief specifies all error stacks printing no framework error stacks.
|
|
StackModeBrief StackMode = "brief"
|
|
|
|
// StackModeDetail specifies all error stacks printing detailed error stacks including framework stacks.
|
|
StackModeDetail StackMode = "detail"
|
|
)
|
|
|
|
var (
|
|
// stackModeConfigured is the configured error stack mode variable.
|
|
// It is brief stack mode in default.
|
|
stackModeConfigured = StackModeBrief
|
|
)
|
|
|
|
func init() {
|
|
// Deprecated.
|
|
briefSetting := command.GetOptWithEnv(commandEnvKeyForBrief)
|
|
if briefSetting == "1" || briefSetting == "true" {
|
|
stackModeConfigured = StackModeBrief
|
|
}
|
|
|
|
// The error stack mode is configured using command line arguments or environments.
|
|
stackModeSetting := command.GetOptWithEnv(commandEnvKeyForStackMode)
|
|
if stackModeSetting != "" {
|
|
stackModeSettingMode := StackMode(stackModeSetting)
|
|
switch stackModeSettingMode {
|
|
case StackModeBrief, StackModeDetail:
|
|
stackModeConfigured = stackModeSettingMode
|
|
}
|
|
}
|
|
}
|
|
|
|
// IsStackModeBrief returns whether current error stack mode is in brief mode.
|
|
func IsStackModeBrief() bool {
|
|
return stackModeConfigured == StackModeBrief
|
|
}
|