Logging fixes

This commit is contained in:
Juan Ferrer 2022-03-30 13:20:58 +02:00
parent cbdc48e78a
commit eba585acf4
2 changed files with 2 additions and 3 deletions

View File

@ -174,7 +174,6 @@ class Push {
for (const script of scripts) for (const script of scripts)
if (!isUndoScript(script) if (!isUndoScript(script)
&& versionLog.findIndex(x => x.file == script) === -1) { && versionLog.findIndex(x => x.file == script) === -1) {
console.debug(script);
silent = false; silent = false;
break; break;
} }
@ -355,7 +354,7 @@ class Push {
try { try {
await finalize(); await finalize();
} catch (e) { } catch (e) {
console.log(e); console.error(e);
} }
throw err; throw err;
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "myvc", "name": "myvc",
"version": "1.3.5", "version": "1.3.6",
"author": "Verdnatura Levante SL", "author": "Verdnatura Levante SL",
"description": "MySQL Version Control", "description": "MySQL Version Control",
"license": "GPL-3.0", "license": "GPL-3.0",