X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2FAuthorizedTagsCache.ts;h=fd085890f2359af34b8ff1a5580f9d3323c84137;hb=8b7072dca602c80ec6ef9a3463b6d53b43aa8fa5;hp=b5058291b71c1a336ce914786d94f6a90af2e80f;hpb=183173559d6bfc96e66c8ff5a0624b8215c2f71c;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/AuthorizedTagsCache.ts b/src/charging-station/AuthorizedTagsCache.ts index b5058291..fd085890 100644 --- a/src/charging-station/AuthorizedTagsCache.ts +++ b/src/charging-station/AuthorizedTagsCache.ts @@ -106,7 +106,7 @@ export default class AuthorizedTagsCache { return authorizedTags; } - private logPrefix(file: string): string { + private logPrefix = (file: string): string => { return Utils.logPrefix(` Authorized tags cache for authorization file '${file}' |`); - } + }; }