mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-10 07:24:37 +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;
|
|
};
|