Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Fixlets to log message after methods renaming
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
  • Loading branch information
Jérôme Benoit committed Apr 15, 2022
1 parent be9b0d5 commit 1c959f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/charging-station/ocpp/1.6/OCPP16RequestService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default class OCPP16RequestService extends OCPPRequestService {
}
throw new OCPPError(
ErrorType.NOT_SUPPORTED,
`${moduleName}.sendMessageHandler: Unsupported OCPP command ${commandName}`,
`${moduleName}.requestHandler: Unsupported OCPP command ${commandName}`,
commandName,
{ commandName }
);
Expand Down Expand Up @@ -133,7 +133,7 @@ export default class OCPP16RequestService extends OCPPRequestService {
throw new OCPPError(
ErrorType.NOT_SUPPORTED,
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
`${moduleName}.buildCommandPayload: Unsupported OCPP command: ${commandName}`,
`${moduleName}.buildRequestPayload: Unsupported OCPP command: ${commandName}`,
commandName,
{ commandName }
);
Expand Down

0 comments on commit 1c959f1

Please sign in to comment.