kubectl-aks
kubectl-aks copied to clipboard
Verbose flag should set the logrus log level
We use the "github.com/sirupsen/logrus" for logging. The --verbose should set the log level to debug: logrus.SetLevel(logrus.DebugLevel).
Replace following code block with logrus.Debugf:
if verbose {
...
}