mirror of
https://github.com/fofolee/uTools-ProcessKiller.git
synced 2025-06-09 06:54:33 +08: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;
|
|
};
|