X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=596f0275e8335a9c36e0dc29cb31dff5539cc4fb;hb=8eac9a09368f841fc44e980f31674146833e449b;hp=56bafee7b86bebb53a6a97414183c544c8d72f58;hpb=81797102d5214fea2fc58eff2666fe8b8d9a5a11;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 56bafee7..596f0275 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,7 +1,8 @@ import Bootstrap from './charging-station/Bootstrap'; +import chalk from 'chalk'; Bootstrap.getInstance().start().catch( (error) => { - console.error(error); + console.error(chalk.red(error)); } );