refactor(simulator): remove unneeded condition check in log message
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / OCPPResponseService.ts
index ab17b05ad6bf2626dd03d7db2d34a196f71d9de7..5adcf6fb9007ae2ac52e80770f17b10d9d4dba00 100644 (file)
@@ -1,7 +1,8 @@
 import Ajv, { type JSONSchemaType } from 'ajv';
 import ajvFormats from 'ajv-formats';
 
-import { OCPPServiceUtils } from './OCPPServiceUtils';
+import { OCPPServiceUtils } from './internal';
+import type { ChargingStation } from '../../charging-station';
 import { OCPPError } from '../../exception';
 import type {
   IncomingRequestCommand,
@@ -10,8 +11,7 @@ import type {
   OCPPVersion,
   RequestCommand,
 } from '../../types';
-import { logger } from '../../utils/Logger';
-import type { ChargingStation } from '../ChargingStation';
+import { logger } from '../../utils';
 
 const moduleName = 'OCPPResponseService';