From f4f18afb7a7e3208ea9bbeac507ee460a9027092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=98=89=E4=BC=9F?= <8473136@qq.com> Date: Wed, 8 Jan 2025 12:07:42 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20Improve=20the=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- electron/api/frpc.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electron/api/frpc.ts b/electron/api/frpc.ts index 4925b3a..97baf50 100644 --- a/electron/api/frpc.ts +++ b/electron/api/frpc.ts @@ -570,7 +570,7 @@ export const reloadFrpcProcess = () => { } }); } else { - logWarn( + logDebug( LogModule.FRP_CLIENT, "frpc process is not running or has been killed." ); @@ -614,7 +614,7 @@ export const stopFrpcProcess = (callback?: () => void) => { */ export const frpcProcessStatus = () => { if (!frpcProcess) { - logWarn(LogModule.FRP_CLIENT, "frpc process is not running."); + logDebug(LogModule.FRP_CLIENT, "frpc process is not running."); return false; } try {