feat(log): Add separator when saving client credentials

This commit is contained in:
hkfires
2025-09-19 12:36:17 +08:00
parent 4bfafbe3aa
commit 395164e2d4

View File

@@ -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) {