Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mirror] Add mirror debug logging #28

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions internal/mirror/cmd/mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ limitations under the License.
package mirror

import (
"os"
"strconv"

"github.com/google/go-containerregistry/pkg/logs"
"github.com/spf13/cobra"
"k8s.io/component-base/logs"
"k8s.io/kubectl/pkg/util/templates"

"github.com/deckhouse/deckhouse-cli/internal/mirror/cmd/modules"
"github.com/deckhouse/deckhouse-cli/internal/mirror/cmd/pull"
"github.com/deckhouse/deckhouse-cli/internal/mirror/cmd/push"
"github.com/deckhouse/deckhouse-cli/internal/mirror/cmd/vulndb"
"github.com/deckhouse/deckhouse-cli/internal/mirror/util/log"
)

var mirrorLong = templates.LongDesc(`
Expand Down Expand Up @@ -54,6 +58,22 @@ func NewCommand() *cobra.Command {
vulndb.NewCommand(),
)

logs.AddFlags(mirrorCmd.PersistentFlags())
debugLogStr := os.Getenv("MIRROR_DEBUG_LOG")
if debugLogStr != "" {
debugLogLevel, err := strconv.Atoi(debugLogStr)
if err != nil {
log.WarnF("Invalid $MIRROR_DEBUG_LOG: %v\nUse 1 for progress logging, 2 for warnings or 3 for connection logging. Each level also enables previous ones.\n", err)
}

switch {
case debugLogLevel >= 3:
logs.Debug.SetOutput(os.Stderr)
case debugLogLevel >= 2:
logs.Warn.SetOutput(os.Stderr)
case debugLogLevel >= 1:
logs.Progress.SetOutput(os.Stderr)
}
}

return mirrorCmd
}