From 06996a35d537a09fe74f661378206e6d8ab8f269 Mon Sep 17 00:00:00 2001 From: Niklas Kapelle Date: Thu, 6 Nov 2025 16:02:09 +0100 Subject: [PATCH] disabled timestamp in logs --- cmd/steamimmich.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/steamimmich.go b/cmd/steamimmich.go index a954435..f8995e4 100644 --- a/cmd/steamimmich.go +++ b/cmd/steamimmich.go @@ -34,6 +34,9 @@ func main() { log.Fatal("Can not find steam userdata dir. Please set with --steam-userdata-dir") } + // Disable timestamp in log + log.SetFlags(0) + steamimmich.Run(steamimmich.Config{ APIKey: args.APIKey, BaseURL: args.BaseURL,