diff --git a/store/server.ts b/store/server.ts index 7bf473b65..abfd72126 100644 --- a/store/server.ts +++ b/store/server.ts @@ -672,7 +672,7 @@ export const useServerStore = defineStore('server', () => { }; }); watch(cloudError, (newVal, oldVal) => { - console.debug('[watch:deprecatedUnraidSSL]', newVal, oldVal); + console.debug('[watch:cloudError]', newVal, oldVal); if (oldVal && oldVal.ref) { errorsStore.removeErrorByRef(oldVal.ref); } if (newVal) { errorsStore.setError(newVal); } });