mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
Fix logging in publish task
This commit is contained in:
parent
13308403cb
commit
85d685b38f
@ -91,13 +91,12 @@ async function publish(ignoreErrors: boolean = false) {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
await Queue(worker, PACKAGES, cpus().length);
|
await Queue(worker, PACKAGES, cpus().length);
|
||||||
Logger.log('Done publishing!');
|
Logger.info('Done publishing!');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
Logger.error('Error publishing!');
|
Logger.error('Error publishing!');
|
||||||
Logger.error(e);
|
Logger.error(e);
|
||||||
} finally {
|
|
||||||
Logger.profile('Publishing');
|
|
||||||
}
|
}
|
||||||
|
Logger.profile('Publishing', { level: 'verbose' });
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare();
|
prepare();
|
||||||
|
Loading…
Reference in New Issue
Block a user