Skip to content

Commit 1799d4c

Browse files
authored
Fix missing parameter for log (#8)
Fix missing parameter for log
2 parents 56836c6 + f66bc1d commit 1799d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/kubectl-tree/rootcmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func run(_ *cobra.Command, args []string) error {
7070

7171
var api apiResource
7272
if k, ok := overrideType(kind, apis); ok {
73-
klog.V(2).Infof("kind=%s override found: %s", k.GroupVersionResource())
73+
klog.V(2).Infof("kind=%s override found: %s", kind, k.GroupVersionResource())
7474
api = k
7575
} else {
7676
apiResults := apis.lookup(kind)

0 commit comments

Comments
 (0)