fix(logs): surface handled errors as info in logs (#3190)

* fix(logs): surface handled errors as info in logs

* pr comments
This commit is contained in:
Waleed
2026-02-10 21:21:45 -08:00
committed by GitHub
parent af01dce2c3
commit 13a91113fd
11 changed files with 586 additions and 21 deletions

View File

@@ -292,6 +292,9 @@ export class BlockExecutor {
const hasErrorPort = this.hasErrorPortEdge(node)
if (hasErrorPort) {
if (blockLog) {
blockLog.errorHandled = true
}
logger.info('Block has error port - returning error output instead of throwing', {
blockId: node.id,
error: errorMessage,