[NOD-869] Add a print after os.Exit(1) to see if it is ever called (#701)

This commit is contained in:
Svarog 2020-04-16 15:03:41 +03:00 committed by Mike Zak
parent 291df8bfef
commit 42c53ec3e2

View File

@ -70,5 +70,7 @@ func exit(log *logs.Logger, reason string, currentThreadStackTrace []byte, gorou
fmt.Fprintln(os.Stderr, "Couldn't exit gracefully.")
case <-exitHandlerDone:
}
fmt.Print("Exiting...")
os.Exit(1)
fmt.Print("After os.Exit(1)")
}