Skip to content

Commit 364c66e

Browse files
authored
Merge pull request kubernetes#88828 from msau42/fix-skip-log
Fix log formatting for skipper.
2 parents 1afb554 + 3ee3034 commit 364c66e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/e2e/framework/skipper/skipper.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ import (
2020
"bufio"
2121
"bytes"
2222
"fmt"
23-
"github.com/onsi/ginkgo"
2423
"regexp"
2524
"runtime"
2625
"runtime/debug"
2726
"strings"
2827

28+
"github.com/onsi/ginkgo"
29+
2930
apierrors "k8s.io/apimachinery/pkg/api/errors"
3031
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3132
"k8s.io/apimachinery/pkg/runtime/schema"
@@ -44,7 +45,7 @@ var TestContext framework.TestContextType
4445

4546
func skipInternalf(caller int, format string, args ...interface{}) {
4647
msg := fmt.Sprintf(format, args...)
47-
framework.Logf("INFO", msg)
48+
framework.Logf(msg)
4849
skip(msg, caller+1)
4950
}
5051

0 commit comments

Comments
 (0)