mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-13 16:08:04 -05:00
Co-authored-by: colinlyguo <102356659+colinlyguo@users.noreply.github.com> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com>
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package utils
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var (
|
|
// CommonFlags is used for app common flags in different modules
|
|
CommonFlags = []cli.Flag{
|
|
&ConfigFileFlag,
|
|
&VerbosityFlag,
|
|
&LogFileFlag,
|
|
&LogJSONFormat,
|
|
&LogDebugFlag,
|
|
}
|
|
// ConfigFileFlag load json type config file.
|
|
ConfigFileFlag = cli.StringFlag{
|
|
Name: "config",
|
|
Usage: "JSON configuration file",
|
|
Value: "./config.json",
|
|
}
|
|
// VerbosityFlag log level.
|
|
VerbosityFlag = cli.IntFlag{
|
|
Name: "verbosity",
|
|
Usage: "Logging verbosity: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail",
|
|
Value: 3,
|
|
}
|
|
// LogFileFlag decides where the logger output is sent. If this flag is left
|
|
// empty, it will log to stdout.
|
|
LogFileFlag = cli.StringFlag{
|
|
Name: "log.file",
|
|
Usage: "Tells the module where to write log entries",
|
|
}
|
|
// LogJSONFormat decides the log format is json or not
|
|
LogJSONFormat = cli.BoolFlag{
|
|
Name: "log.json",
|
|
Usage: "Tells the module whether log format is json or not",
|
|
Value: true,
|
|
}
|
|
// LogDebugFlag make log messages with call-site location
|
|
LogDebugFlag = cli.BoolFlag{
|
|
Name: "log.debug",
|
|
Usage: "Prepends log messages with call-site location (file and line number)",
|
|
}
|
|
)
|