Add debug log level.
This commit is contained in:
parent
869f0fde9a
commit
74c7587870
7
main.go
7
main.go
@ -54,6 +54,7 @@ import (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
version string
|
version string
|
||||||
|
verbose bool
|
||||||
|
|
||||||
globalConfig *models.RelayConfig
|
globalConfig *models.RelayConfig
|
||||||
)
|
)
|
||||||
@ -65,6 +66,7 @@ func main() {
|
|||||||
|
|
||||||
var app = buildCommand()
|
var app = buildCommand()
|
||||||
app.PersistentFlags().StringP("config", "c", "config.yml", "Path of config file.")
|
app.PersistentFlags().StringP("config", "c", "config.yml", "Path of config file.")
|
||||||
|
app.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Show debug log in stdout.")
|
||||||
|
|
||||||
app.Execute()
|
app.Execute()
|
||||||
}
|
}
|
||||||
@ -119,6 +121,11 @@ func buildCommand() *cobra.Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func initConfig(cmd *cobra.Command) {
|
func initConfig(cmd *cobra.Command) {
|
||||||
|
if verbose {
|
||||||
|
logrus.SetLevel(logrus.DebugLevel)
|
||||||
|
fmt.Println("DEBUG VIEW")
|
||||||
|
}
|
||||||
|
|
||||||
configPath := cmd.Flag("config").Value.String()
|
configPath := cmd.Flag("config").Value.String()
|
||||||
file, err := os.Open(configPath)
|
file, err := os.Open(configPath)
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user