Use camel case everywhere
[e-mobility-charging-stations-simulator.git] / src / start.ts
index 56bafee7b86bebb53a6a97414183c544c8d72f58..a3c14ffa44f26c530bef3766d21731f8c76c1622 100644 (file)
@@ -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));
   }
 );