From 1dd43417c7982c7dd8711dec335bf68ece8c80ba Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Thu, 29 Oct 2020 04:55:28 +0000 Subject: [PATCH] add startup and shutdown log message --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 1547ced..a8b4521 100644 --- a/main.go +++ b/main.go @@ -28,6 +28,7 @@ var ( ) func init() { + log.Print("storage-security starting") img = gocv.NewMat() imgDelta = gocv.NewMat() @@ -116,6 +117,7 @@ func main() { } } } + log.Printf("shutting down") } // Returns true if motion detected in current frame