mirror of https://github.com/v2ray/v2ray-core
flag for log level
parent
608f72f537
commit
e1952a52e4
|
@ -16,12 +16,22 @@ import (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
configFile = flag.String("config", "", "Config file for this Point server.")
|
configFile = flag.String("config", "", "Config file for this Point server.")
|
||||||
|
logLevel = flag.String("loglevel", "", "Level of log info to be printed to console, available value: debug, info, warning, error")
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
log.SetLogLevel(log.DebugLevel)
|
switch *logLevel {
|
||||||
|
case "debug":
|
||||||
|
log.SetLogLevel(log.DebugLevel)
|
||||||
|
case "info":
|
||||||
|
log.SetLogLevel(log.InfoLevel)
|
||||||
|
case "warning":
|
||||||
|
log.SetLogLevel(log.WarningLevel)
|
||||||
|
case "error":
|
||||||
|
log.SetLogLevel(log.ErrorLevel)
|
||||||
|
}
|
||||||
|
|
||||||
if configFile == nil || len(*configFile) == 0 {
|
if configFile == nil || len(*configFile) == 0 {
|
||||||
panic(log.Error("Config file is not set."))
|
panic(log.Error("Config file is not set."))
|
||||||
|
|
Loading…
Reference in New Issue