From ba4b46339dc5cf9d21ea380bf9b41c4a116115f7 Mon Sep 17 00:00:00 2001 From: simulot Date: Sun, 1 Dec 2024 10:45:10 +0100 Subject: [PATCH] v0.23.RC2 the api-trace log file name is not mentioned in the main log Fixes #548 --- app/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/client.go b/app/client.go index 317872a2..a47a48bf 100644 --- a/app/client.go +++ b/app/client.go @@ -88,6 +88,7 @@ func OpenClient(ctx context.Context, cmd *cobra.Command, app *Application) error } client.Immich.EnableAppTrace(client.APITraceWriter) } + app.log.Message("Check the API-TRACE file: %s", client.APITraceWriterName) } return nil }