Skip to content
Snippets Groups Projects
Commit 2b030677 authored by Agustin's avatar Agustin
Browse files

console.log to console.error

parent 4cc4b74f
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ async function initParameterDataBase(): Promise<void> {
console.log('Default Weight table loading success');
})
.catch((err) => {
console.log(err);
console.error(err);
});
});
pathToFile = path.join(__dirname, 'DefaultExtraDataLoader.csv');
......@@ -36,7 +36,7 @@ async function initParameterDataBase(): Promise<void> {
console.log('Extra Data table loading success');
})
.catch((err) => {
console.log(err);
console.error(err);
});
});
pathToFile = path.join(__dirname, 'EquationConstantLoader.csv');
......@@ -49,7 +49,7 @@ async function initParameterDataBase(): Promise<void> {
console.log('Equation Constant table loading success');
})
.catch((err) => {
console.log(err);
console.error(err);
});
});
FAQ.sync({ force: true });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment