mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
|
var CordovaLogger = require('cordova-common').CordovaLogger;
|
||
|
|
||
|
module.exports = {
|
||
|
adjustLoggerLevel: function (opts) {
|
||
|
if (opts instanceof Array) {
|
||
|
opts.silent = opts.indexOf('--silent') !== -1;
|
||
|
opts.verbose = opts.indexOf('--verbose') !== -1;
|
||
|
}
|
||
|
|
||
|
if (opts.silent) {
|
||
|
CordovaLogger.get().setLevel('error');
|
||
|
}
|
||
|
|
||
|
if (opts.verbose) {
|
||
|
CordovaLogger.get().setLevel('verbose');
|
||
|
}
|
||
|
}
|
||
|
};
|