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.
2 parents b7e878e + 2addf1d commit 1aefcc2Copy full SHA for 1aefcc2
cmd/main.go
@@ -37,6 +37,11 @@ import (
37
grafanav1alpha1 "sigs.k8s.io/kubebuilder/v3/pkg/plugins/optional/grafana/v1alpha"
38
)
39
40
+func init() {
41
+ // Disable timestamps on the default TextFormatter
42
+ logrus.SetFormatter(&logrus.TextFormatter{DisableTimestamp: true})
43
+}
44
+
45
func main() {
46
47
const deprecateMessageGoV3Bundle = "This version is deprecated." +
hack/docs/generate_samples.go
@@ -27,6 +27,7 @@ import (
27
const KubebuilderBinName = "/tmp/kubebuilder/bin/kubebuilder"
28
29
30
+ log.SetFormatter(&log.TextFormatter{DisableTimestamp: true})
31
log.Println("Generating documents...")
32
33
log.Println("Generating component-config tutorial...")
0 commit comments