From 35dffe71cbda47bfc50983b2ec45ce1df417f4ca Mon Sep 17 00:00:00 2001 From: Owen Date: Fri, 26 Jun 2026 14:40:31 -0400 Subject: [PATCH] Make error statement debug --- server/lib/blueprints/applyBlueprint.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/lib/blueprints/applyBlueprint.ts b/server/lib/blueprints/applyBlueprint.ts index 493831131..1edf87f80 100644 --- a/server/lib/blueprints/applyBlueprint.ts +++ b/server/lib/blueprints/applyBlueprint.ts @@ -172,7 +172,9 @@ export async function applyBlueprint({ } catch (err) { blueprintSucceeded = false; blueprintMessage = `Blueprint applied with errors: ${err}`; - logger.error(blueprintMessage); + logger.debug( + `Org ${orgId} blueprint apply issues: ${blueprintMessage}` + ); error = err; }