Skip to content

Commit

Permalink
Ignore primitives 65-67 when logging
Browse files Browse the repository at this point in the history
fniephaus committed Jan 4, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent d6628f4 commit 265a315
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -69,7 +69,8 @@ static void logMissingPrimitive(final AbstractPrimitiveNode primitiveNode, final
LogUtils.PRIMITIVES.fine(() -> "Named primitive not found for " + code);
} else if (primitiveIndex != PrimitiveNodeFactory.PRIMITIVE_SIMULATION_GUARD_INDEX &&
primitiveIndex != PrimitiveNodeFactory.PRIMITIVE_ENSURE_MARKER_INDEX &&
primitiveIndex != PrimitiveNodeFactory.PRIMITIVE_ON_DO_MARKER_INDEX) {
primitiveIndex != PrimitiveNodeFactory.PRIMITIVE_ON_DO_MARKER_INDEX &&
primitiveIndex != 65 && primitiveIndex != 66 && primitiveIndex != 67) {
LogUtils.PRIMITIVES.fine(() -> "Primitive #" + code.primitiveIndex() + " not found for " + code);
}
}

0 comments on commit 265a315

Please sign in to comment.