X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fstart.ts;h=a3c14ffa44f26c530bef3766d21731f8c76c1622;hb=9ab62ed05a70a1feda05803f085a449ce35a4f14;hp=56bafee7b86bebb53a6a97414183c544c8d72f58;hpb=1af50fac1ab71fed19f11864d1644261046698a3;p=e-mobility-charging-stations-simulator.git diff --git a/src/start.ts b/src/start.ts index 56bafee7..a3c14ffa 100644 --- a/src/start.ts +++ b/src/start.ts @@ -1,7 +1,10 @@ +// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. + import Bootstrap from './charging-station/Bootstrap'; +import chalk from 'chalk'; Bootstrap.getInstance().start().catch( (error) => { - console.error(error); + console.error(chalk.red(error)); } );