mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #26725 from StefanScherer/log-error-to-event-log
Windows: Write fatal error to event log if running as service
This commit is contained in:
commit
6997182882
1 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,9 @@ func notifySystem() {
|
||||||
// notifyShutdown is called after the daemon shuts down but before the process exits.
|
// notifyShutdown is called after the daemon shuts down but before the process exits.
|
||||||
func notifyShutdown(err error) {
|
func notifyShutdown(err error) {
|
||||||
if service != nil {
|
if service != nil {
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
service.stopped(err)
|
service.stopped(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue