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",