Logging fixes
This commit is contained in:
parent
cbdc48e78a
commit
eba585acf4
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue