summaryrefslogtreecommitdiff
path: root/vendor/github.com
diff options
context:
space:
mode:
authoropenshift-merge-bot[bot] <148852131+openshift-merge-bot[bot]@users.noreply.github.com>2024-07-17 20:26:50 +0000
committerGitHub <noreply@github.com>2024-07-17 20:26:50 +0000
commit89432899a7e4f1b4bb387157425fe9638c51ce02 (patch)
tree17b64120de85bce08172dc1bdb01f95bf17743d2 /vendor/github.com
parent9f47319a72c19cb1ed104e8d8b24f2f9e36d51ca (diff)
parent692d2a5b08fc7b4664cdaf6a7d3e171d89c647d6 (diff)
Merge pull request #23299 from containers/renovate/github.com-rootless-containers-rootlesskit-v2-2.x
fix(deps): update module github.com/rootless-containers/rootlesskit/v2 to v2.2.0
Diffstat (limited to 'vendor/github.com')
-rw-r--r--vendor/github.com/u-root/uio/ulog/log.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/vendor/github.com/u-root/uio/ulog/log.go b/vendor/github.com/u-root/uio/ulog/log.go
index fbf00f720..9c6880503 100644
--- a/vendor/github.com/u-root/uio/ulog/log.go
+++ b/vendor/github.com/u-root/uio/ulog/log.go
@@ -16,7 +16,6 @@ import "log"
// It puts your information somewhere for safekeeping.
type Logger interface {
Printf(format string, v ...interface{})
- Print(v ...interface{})
}
// Log is a Logger that prints to the log package's default logger.
@@ -24,8 +23,8 @@ var Log Logger = log.Default()
type emptyLogger struct{}
+// Printf implements Logger.Printf.
func (emptyLogger) Printf(format string, v ...interface{}) {}
-func (emptyLogger) Print(v ...interface{}) {}
// Null is a logger that prints nothing.
var Null Logger = emptyLogger{}