ethernet-ip
Version:
A feature-complete EtherNet/IP client for Rockwell ControlLogix/CompactLogix PLCs
15 lines • 394 B
JavaScript
;
/**
* Logger interface — injected via PLC constructor.
* Default is noop (no output). Consumers provide their own implementation.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.noopLogger = void 0;
const noop = () => { };
exports.noopLogger = {
debug: noop,
info: noop,
warn: noop,
error: noop,
};
//# sourceMappingURL=logger.js.map