Make error statement debug

This commit is contained in:
Owen 2026-06-26 14:40:31 -04:00
parent 2e628fe0e4
commit 35dffe71cb
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

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