build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / performance / storage / JsonFileStorage.ts
index c4a9f7483e30060047607bdbad5a97e15fb7c91c..8bbbd42cea06563d91d7e6d360bf38cc06f92563 100644 (file)
@@ -39,7 +39,7 @@ export class JsonFileStorage extends Storage {
           this.dbName,
           FileType.PerformanceRecords,
           error as NodeJS.ErrnoException,
-          this.logPrefix
+          this.logPrefix,
         );
       })
       .finally(() => {
@@ -60,7 +60,7 @@ export class JsonFileStorage extends Storage {
         this.dbName,
         FileType.PerformanceRecords,
         error as NodeJS.ErrnoException,
-        this.logPrefix
+        this.logPrefix,
       );
     }
   }
@@ -76,7 +76,7 @@ export class JsonFileStorage extends Storage {
         this.dbName,
         FileType.PerformanceRecords,
         error as NodeJS.ErrnoException,
-        this.logPrefix
+        this.logPrefix,
       );
     }
   }
@@ -84,7 +84,7 @@ export class JsonFileStorage extends Storage {
   private checkPerformanceRecordsFile(): void {
     if (!this?.fd) {
       throw new BaseError(
-        `${this.logPrefix} Performance records '${this.dbName}' file descriptor not found`
+        `${this.logPrefix} Performance records '${this.dbName}' file descriptor not found`,
       );
     }
   }