We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e7136 commit 3ee3034Copy full SHA for 3ee3034
test/e2e/framework/skipper/skipper.go
@@ -20,12 +20,13 @@ import (
20
"bufio"
21
"bytes"
22
"fmt"
23
- "github.com/onsi/ginkgo"
24
"regexp"
25
"runtime"
26
"runtime/debug"
27
"strings"
28
+ "github.com/onsi/ginkgo"
29
+
30
apierrors "k8s.io/apimachinery/pkg/api/errors"
31
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
32
"k8s.io/apimachinery/pkg/runtime/schema"
@@ -44,7 +45,7 @@ var TestContext framework.TestContextType
44
45
46
func skipInternalf(caller int, format string, args ...interface{}) {
47
msg := fmt.Sprintf(format, args...)
- framework.Logf("INFO", msg)
48
+ framework.Logf(msg)
49
skip(msg, caller+1)
50
}
51
0 commit comments