Replaced a console log with a consola.error

This commit is contained in:
Nicolai Ort 2020-12-10 17:44:17 +01:00
parent d5e5e27ca3
commit aaeef4a27e
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ async function main() {
if (errors === 0) {
main();
} else {
console.log("error");
consola.error("error");
// something's wrong
}