diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-09-29 13:20:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 13:20:30 +0000 |
commit | 84dede4452d4f85ad6dacf2c66e00500685c24af (patch) | |
tree | 670e0208837a7acf0a8b53eda463b57e55d353d8 /vendor/github.com/sirupsen/logrus/exported.go | |
parent | 5cf865926ed62c8baa691f96e8fe5f585e077083 (diff) | |
parent | e6789cb3e8aaaa54cd80e953f730f358b861f167 (diff) | |
download | podman-84dede4452d4f85ad6dacf2c66e00500685c24af.tar.gz podman-84dede4452d4f85ad6dacf2c66e00500685c24af.tar.bz2 podman-84dede4452d4f85ad6dacf2c66e00500685c24af.zip |
Merge pull request #7819 from containers/dependabot/go_modules/github.com/sirupsen/logrus-1.7.0
Bump github.com/sirupsen/logrus from 1.6.0 to 1.7.0
Diffstat (limited to 'vendor/github.com/sirupsen/logrus/exported.go')
-rw-r--r-- | vendor/github.com/sirupsen/logrus/exported.go | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/vendor/github.com/sirupsen/logrus/exported.go b/vendor/github.com/sirupsen/logrus/exported.go index 42b04f6c8..017c30ce6 100644 --- a/vendor/github.com/sirupsen/logrus/exported.go +++ b/vendor/github.com/sirupsen/logrus/exported.go @@ -134,6 +134,51 @@ func Fatal(args ...interface{}) { std.Fatal(args...) } +// TraceFn logs a message from a func at level Trace on the standard logger. +func TraceFn(fn LogFunction) { + std.TraceFn(fn) +} + +// DebugFn logs a message from a func at level Debug on the standard logger. +func DebugFn(fn LogFunction) { + std.DebugFn(fn) +} + +// PrintFn logs a message from a func at level Info on the standard logger. +func PrintFn(fn LogFunction) { + std.PrintFn(fn) +} + +// InfoFn logs a message from a func at level Info on the standard logger. +func InfoFn(fn LogFunction) { + std.InfoFn(fn) +} + +// WarnFn logs a message from a func at level Warn on the standard logger. +func WarnFn(fn LogFunction) { + std.WarnFn(fn) +} + +// WarningFn logs a message from a func at level Warn on the standard logger. +func WarningFn(fn LogFunction) { + std.WarningFn(fn) +} + +// ErrorFn logs a message from a func at level Error on the standard logger. +func ErrorFn(fn LogFunction) { + std.ErrorFn(fn) +} + +// PanicFn logs a message from a func at level Panic on the standard logger. +func PanicFn(fn LogFunction) { + std.PanicFn(fn) +} + +// FatalFn logs a message from a func at level Fatal on the standard logger then the process will exit with status set to 1. +func FatalFn(fn LogFunction) { + std.FatalFn(fn) +} + // Tracef logs a message at level Trace on the standard logger. func Tracef(format string, args ...interface{}) { std.Tracef(format, args...) |