From 395164e2d4418ac9e3fd5337c0d499c501df9b6b Mon Sep 17 00:00:00 2001 From: hkfires <10558748+hkfires@users.noreply.github.com> Date: Fri, 19 Sep 2025 12:36:17 +0800 Subject: [PATCH] feat(log): Add separator when saving client credentials --- internal/cmd/run.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/cmd/run.go b/internal/cmd/run.go index 600acb68..f5c5a14c 100644 --- a/internal/cmd/run.go +++ b/internal/cmd/run.go @@ -344,6 +344,7 @@ func StartService(cfg *config.Config, configPath string) { } activeClientsMu.RUnlock() for _, c := range snapshot { + misc.LogCredentialSeparator() // Persist tokens/cookies then unregister/cleanup per client. _ = c.SaveTokenToFile() switch u := any(c).(type) {