refactor: format error message properly
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 26 May 2023 12:35:37 +0000 (14:35 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 26 May 2023 12:35:37 +0000 (14:35 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/Bootstrap.ts

index 96a498f601a626c2f640637fe8184446fe646085..a1ee4ff2342b01854ffd913ff83ec1dec1abbd0b 100644 (file)
@@ -299,7 +299,7 @@ export class Bootstrap extends EventEmitter {
         process.exit(0);
       })
       .catch((error) => {
-        console.error(chalk.red('Error while stopping charging stations simulator:'), error);
+        console.error(chalk.red('Error while stopping charging stations simulator: '), error);
         process.exit(1);
       });
   };