Avoid strings concatenation
[e-mobility-charging-stations-simulator.git] / src / scripts / deleteChargingStations.js
index ca5875d383e650d418eed97651496a4ba74933d4..4f65bdd3aef1073ecdc9f852a8b86ad5842940bb 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
@@ -19,9 +20,9 @@ if (config && config.mongoConnectionString) {
 
     for await (const tenantID of config.tenantIDs) {
       const response = await db
-        .collection(tenantID + '.chargingstations')
+        .collection(`${tenantID}.chargingstations`)
         .deleteMany({ _id: { $regex: config.idPattern } });
-      console.log(
+      console.info(
         response.deletedCount,
         `Charging Stations with id = %${config.idPattern}% deleted. TenantID =`,
         tenantID