logging.go
// Cmd returns the cobra command for Logging
func Cmd(cf *LoggingCmdFactory) *cobra.Command {
loggingCmd.AddCommand(getLevelCmd(cf))
loggingCmd.AddCommand(setLevelCmd(cf))
loggingCmd.AddCommand(revertLevelsCmd(cf))
return loggingCmd
}Last updated