From 7b64e5e08bf4501b07ee0f47012c007197f3bb50 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 3 Aug 2023 17:23:41 -0700 Subject: [PATCH] chore: fix log copy --- store/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } });