From bd72e0682501143af39aadf6fb7b99df3277383c Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 5 Jun 2023 19:19:32 +0200 Subject: [PATCH] feat: print a little message when the service starts --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index cb022ee..92f4ae9 100644 --- a/main.go +++ b/main.go @@ -42,5 +42,7 @@ func main() { if err != nil { log.Fatalf("Could not create cron job: %s\n", err) } + log.Println("DB backup service started.") + cr.Run() }