From 45c1a99a8c7b038fc977b2069ecb068aa35df9a8 Mon Sep 17 00:00:00 2001 From: Michael McCarty Date: Fri, 6 Feb 2026 22:31:29 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat:=20Add=20timestamp=20to=20d?= =?UTF-8?q?aemon=20log=20startup=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index ca9a97a8..8627f06d 100644 --- a/main.go +++ b/main.go @@ -134,7 +134,7 @@ func init() { version.Version = Version log.Printf("Starting Discord Bot: %s (%s)\n", version.Release, Version) // For the daemon Log - fmt.Printf("Starting Discord Bot: %s (%s)\n", version.Release, Version) + fmt.Printf("Starting Discord Bot: %s (%s) at %s\n", version.Release, Version, time.Now().Format(time.RFC3339)) // Read application parameters flag.Parse()