X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fscripts%2FdeleteChargingStations.js;h=f92cdcf1a7ea0d9573185af3a174a7f161d7108d;hb=2293151663b8b9b410050d187080c20e0990f150;hp=3a46893a64cf1b8390aebae84be71d7959198f9f;hpb=251fff5c7fd6f92c1f1acb921233c7e9c7c89003;p=e-mobility-charging-stations-simulator.git diff --git a/src/scripts/deleteChargingStations.js b/src/scripts/deleteChargingStations.js index 3a46893a..f92cdcf1 100755 --- a/src/scripts/deleteChargingStations.js +++ b/src/scripts/deleteChargingStations.js @@ -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: emobility-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