mirror of
https://github.com/github/codeql-action.git
synced 2026-04-17 04:23:16 +00:00
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
// By default, do nothing
|
|
exports.log = function () {};
|
|
|
|
exports.setLogger = function setLogger(loggerFunction) {
|
|
exports.enabled = true;
|
|
exports.log = loggerFunction;
|
|
};
|