refactor: updated logging messages

This commit is contained in:
Andrea Lamparelli 2023-07-20 09:55:28 +02:00
parent e29dae5073
commit 310ef1fd23
18 changed files with 88 additions and 85 deletions

View file

@ -6,7 +6,7 @@
log(prefix: string, ...str: string[]) {
// eslint-disable-next-line no-console
console.log.apply(console, [prefix, ...str]);
console.log.apply(console, [`[${prefix.padEnd(5)}]`, ...str]);
}
emptyLine() {