Make less verbose

This commit is contained in:
Andras Schmelczer 2025-02-23 10:11:30 +00:00
parent 67ad7d8fef
commit 80ba346d46
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -72,13 +72,7 @@ export class Settings {
value: SyncSettings[T]
): Promise<void> {
const newSettings = { ...this.settings, [key]: value };
this.logger.debug(
`Setting ${key} to ${value}, new settings: ${JSON.stringify(
newSettings,
null,
2
)}`
);
this.logger.debug(`Setting '${key}' to '${value}'`);
await this.setSettings(newSettings);
}