summaryrefslogtreecommitdiff
path: root/vendor/github.com/sirupsen/logrus/alt_exit.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-06-19 17:36:55 +0200
committerGitHub <noreply@github.com>2019-06-19 17:36:55 +0200
commitc211b3ff6a71413dbeba90f8ec8f13fec9622291 (patch)
treeae2ed64fa16c19baaaf682e8c09334971b3de341 /vendor/github.com/sirupsen/logrus/alt_exit.go
parent7be87f5551ca36d30518dcd62d623c4d45bb830b (diff)
parentd0d9a4c9b1f525ad1132947cf883fdd66941fe62 (diff)
downloadpodman-c211b3ff6a71413dbeba90f8ec8f13fec9622291.tar.gz
podman-c211b3ff6a71413dbeba90f8ec8f13fec9622291.tar.bz2
podman-c211b3ff6a71413dbeba90f8ec8f13fec9622291.zip
Merge pull request #3364 from jwhonce/wip/logrus
Vendor in logrus v1.4.2
Diffstat (limited to 'vendor/github.com/sirupsen/logrus/alt_exit.go')
-rw-r--r--vendor/github.com/sirupsen/logrus/alt_exit.go18
1 files changed, 15 insertions, 3 deletions
diff --git a/vendor/github.com/sirupsen/logrus/alt_exit.go b/vendor/github.com/sirupsen/logrus/alt_exit.go
index 8af90637a..8fd189e1c 100644
--- a/vendor/github.com/sirupsen/logrus/alt_exit.go
+++ b/vendor/github.com/sirupsen/logrus/alt_exit.go
@@ -51,9 +51,9 @@ func Exit(code int) {
os.Exit(code)
}
-// RegisterExitHandler adds a Logrus Exit handler, call logrus.Exit to invoke
-// all handlers. The handlers will also be invoked when any Fatal log entry is
-// made.
+// RegisterExitHandler appends a Logrus Exit handler to the list of handlers,
+// call logrus.Exit to invoke all handlers. The handlers will also be invoked when
+// any Fatal log entry is made.
//
// This method is useful when a caller wishes to use logrus to log a fatal
// message but also needs to gracefully shutdown. An example usecase could be
@@ -62,3 +62,15 @@ func Exit(code int) {
func RegisterExitHandler(handler func()) {
handlers = append(handlers, handler)
}
+
+// DeferExitHandler prepends a Logrus Exit handler to the list of handlers,
+// call logrus.Exit to invoke all handlers. The handlers will also be invoked when
+// any Fatal log entry is made.
+//
+// This method is useful when a caller wishes to use logrus to log a fatal
+// message but also needs to gracefully shutdown. An example usecase could be
+// closing database connections, or sending a alert that the application is
+// closing.
+func DeferExitHandler(handler func()) {
+ handlers = append([]func(){handler}, handlers...)
+}