A BABLR language enhancer that logs production execution
npm install @bablr/language_enhancer-debug-logThis langauge enhancer console.logs productions as they are evaluated. It is highly useful when debugging.
``js
import { parse } from '@bablr/vm';
import langauge from 'some-langauge';
import { logEnhancer } from '@bablr/hol-debug-log';
parse(
logEnhancer(language),
'sourceText',
spam,``
);