Refine connector id validation error message
[e-mobility-charging-stations-simulator.git] / src / scripts / deleteChargingStations.js
index ca5875d383e650d418eed97651496a4ba74933d4..f92cdcf1a7ea0d9573185af3a174a7f161d7108d 100755 (executable)
@@ -1,12 +1,13 @@
 #!/usr/bin/env node
 
-const MongoClient = require('mongodb');
 const fs = require('fs');
 
+const MongoClient = require('mongodb');
+
 // This script deletes charging stations
 // Filter charging stations by id pattern
 
-// Use Case: charging-stations-simulator creates thousands of charging stations, which are not longer needed.
+// Use Case: e-mobility-charging-stations-simulator creates thousands of charging stations, which are not longer needed.
 // Delete these charging stations all at once
 
 // Config
@@ -21,7 +22,7 @@ if (config && config.mongoConnectionString) {
       const response = await db
         .collection(tenantID + '.chargingstations')
         .deleteMany({ _id: { $regex: config.idPattern } });
-      console.log(
+      console.info(
         response.deletedCount,
         `Charging Stations with id = %${config.idPattern}% deleted. TenantID =`,
         tenantID