Make error statement debug

This commit is contained in:
Owen
2026-06-26 14:40:31 -04:00
parent 2e628fe0e4
commit 35dffe71cb

View File

@@ -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;
}