diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-17 13:17:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 13:17:34 -0500 |
commit | 6ea9ff2f21b583e4bc61a72d97c889ee7057a32e (patch) | |
tree | d378b355d2357ec41e03d4c7ead9d359a9336345 /vendor/github.com/sirupsen/logrus/logger.go | |
parent | 516dc6d1ff618019079bc68055dd7f6c2a447aa2 (diff) | |
parent | 6842907250e84b2b315a7fa609b52f20258ebfa1 (diff) | |
download | podman-6ea9ff2f21b583e4bc61a72d97c889ee7057a32e.tar.gz podman-6ea9ff2f21b583e4bc61a72d97c889ee7057a32e.tar.bz2 podman-6ea9ff2f21b583e4bc61a72d97c889ee7057a32e.zip |
Merge pull request #9406 from containers/dependabot/go_modules/github.com/sirupsen/logrus-1.7.1
Bump github.com/sirupsen/logrus from 1.7.0 to 1.7.1
Diffstat (limited to 'vendor/github.com/sirupsen/logrus/logger.go')
-rw-r--r-- | vendor/github.com/sirupsen/logrus/logger.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/sirupsen/logrus/logger.go b/vendor/github.com/sirupsen/logrus/logger.go index dbf627c97..337704457 100644 --- a/vendor/github.com/sirupsen/logrus/logger.go +++ b/vendor/github.com/sirupsen/logrus/logger.go @@ -12,7 +12,7 @@ import ( // LogFunction For big messages, it can be more efficient to pass a function // and only call it if the log level is actually enables rather than // generating the log message and then checking if the level is enabled -type LogFunction func()[]interface{} +type LogFunction func() []interface{} type Logger struct { // The logs are `io.Copy`'d to this in a mutex. It's common to set this to a |