From 71da22328c8539ec28f66a97446eb4b96e1e6e4b Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 6 Jul 2026 11:13:11 -0400 Subject: [PATCH] Quiet logs --- server/lib/blueprints/applyNewtDockerBlueprint.ts | 2 +- server/routers/blueprints/applyJSONBlueprint.ts | 2 +- server/routers/newt/handleApplyBlueprintMessage.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/lib/blueprints/applyNewtDockerBlueprint.ts b/server/lib/blueprints/applyNewtDockerBlueprint.ts index 6b91b3462..59e7103d8 100644 --- a/server/lib/blueprints/applyNewtDockerBlueprint.ts +++ b/server/lib/blueprints/applyNewtDockerBlueprint.ts @@ -116,7 +116,7 @@ export async function applyNewtDockerBlueprint( source: "NEWT" }); } catch (error) { - logger.error(`Failed to update database from config: ${error}`); + logger.debug(`Failed to update database from config: ${error}`); await sendToClient(newtId, { type: "newt/blueprint/results", data: { diff --git a/server/routers/blueprints/applyJSONBlueprint.ts b/server/routers/blueprints/applyJSONBlueprint.ts index 8ad41e9e4..ae231f8c8 100644 --- a/server/routers/blueprints/applyJSONBlueprint.ts +++ b/server/routers/blueprints/applyJSONBlueprint.ts @@ -99,7 +99,7 @@ export async function applyJSONBlueprint( source: "API" }); } catch (error) { - logger.error(`Failed to update database from config: ${error}`); + logger.debug(`Failed to update database from config: ${error}`); return next( createHttpError( HttpCode.BAD_REQUEST, diff --git a/server/routers/newt/handleApplyBlueprintMessage.ts b/server/routers/newt/handleApplyBlueprintMessage.ts index 908ff048a..ccc1a6a82 100644 --- a/server/routers/newt/handleApplyBlueprintMessage.ts +++ b/server/routers/newt/handleApplyBlueprintMessage.ts @@ -50,7 +50,7 @@ export const handleApplyBlueprintMessage: MessageHandler = async (context) => { source: "NEWT" }); } catch (error) { - logger.error(`Failed to update database from config: ${error}`); + logger.debug(`Failed to update database from config: ${error}`); return { message: { type: "newt/blueprint/results",