add startup and shutdown log message

This commit is contained in:
Steven Polley 2020-10-29 04:55:28 +00:00
parent e2d30e1d65
commit 1dd43417c7

View File

@ -28,6 +28,7 @@ var (
) )
func init() { func init() {
log.Print("storage-security starting")
img = gocv.NewMat() img = gocv.NewMat()
imgDelta = gocv.NewMat() imgDelta = gocv.NewMat()
@ -116,6 +117,7 @@ func main() {
} }
} }
} }
log.Printf("shutting down")
} }
// Returns true if motion detected in current frame // Returns true if motion detected in current frame