From 1452c61378fe41ee0a1b172e425725b539bbe4ba Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 9 Aug 2025 13:23:47 -0600 Subject: [PATCH] Remove message --- frigate/comms/webpush.py | 2 +- web/vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frigate/comms/webpush.py b/frigate/comms/webpush.py index 5b0466321..b3c799287 100644 --- a/frigate/comms/webpush.py +++ b/frigate/comms/webpush.py @@ -378,7 +378,7 @@ class WebPushClient(Communicator): message = f"Detected on {titlecase(camera.replace('_', ' '))}" if ended: - print(f"sending a message with message {message}") + logger.debug(f"Sending a notification with state {state} and message {message}") # if event is ongoing open to live view otherwise open to recordings view direct_url = f"/review?id={reviewId}" if ended else f"/#{camera}" diff --git a/web/vite.config.ts b/web/vite.config.ts index 98a9afde1..cb1a580bf 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -4,7 +4,7 @@ import { defineConfig } from "vite"; import react from "@vitejs/plugin-react-swc"; import monacoEditorPlugin from "vite-plugin-monaco-editor"; -const proxyHost = process.env.PROXY_HOST || "192.168.50.106:5002"; +const proxyHost = process.env.PROXY_HOST || "localhost:5000"; // https://vitejs.dev/config/ export default defineConfig({