return this._timeToStop;
}
- _basicFormatLog(connectorId = null) {
+ _logPrefix(connectorId = null) {
if (connectorId) {
- return Utils.basicFormatLog(' ' + this._chargingStation._stationInfo.name + ' ATG on connector #' + connectorId + ':');
+ return Utils.logPrefix(' ' + this._chargingStation._stationInfo.name + ' ATG on connector #' + connectorId + ':');
}
- return Utils.basicFormatLog(' ' + this._chargingStation._stationInfo.name + ' ATG:');
+ return Utils.logPrefix(' ' + this._chargingStation._stationInfo.name + ' ATG:');
}
async start() {
this.startConnector(connector);
}
}
- logger.info(this._basicFormatLog() + ' ATG started and will stop in ' + Utils.secondstoHHMMSS(this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600));
+ logger.info(this._logPrefix() + ' ATG started and will stop in ' + Utils.secondstoHHMMSS(this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600));
}
async stop(reason = '') {
- logger.info(this._basicFormatLog() + ' ATG OVER => STOPPING ALL TRANSACTIONS');
+ logger.info(this._logPrefix() + ' ATG OVER => STOPPING ALL TRANSACTIONS');
for (const connector in this._chargingStation._connectors) {
if (this._chargingStation._connectors[connector].transactionStarted) {
- logger.info(this._basicFormatLog(connector) + ' ATG OVER. Stop transaction ' + this._chargingStation._connectors[connector].transactionId);
+ logger.info(this._logPrefix(connector) + ' ATG OVER. Stop transaction ' + this._chargingStation._connectors[connector].transactionId);
await this._chargingStation.sendStopTransaction(this._chargingStation._connectors[connector].transactionId, reason);
}
}
do {
const wait = Utils.getRandomInt(this._chargingStation._stationInfo.AutomaticTransactionGenerator.maxDelayBetweenTwoTransactions,
this._chargingStation._stationInfo.AutomaticTransactionGenerator.minDelayBetweenTwoTransactions) * 1000;
- logger.info(this._basicFormatLog(connectorId) + ' wait for ' + Utils.secondstoHHMMSS(wait / 1000));
+ logger.info(this._logPrefix(connectorId) + ' wait for ' + Utils.secondstoHHMMSS(wait / 1000));
await Utils.sleep(wait);
if (this._timeToStop) break;
const start = Math.random();
this._performanceObserver.observe({entryTypes: ['function']});
const startResponse = await startTransaction(connectorId, this);
if (startResponse.idTagInfo.status !== 'Accepted') {
- logger.info(this._basicFormatLog(connectorId) + ' transaction rejected');
+ logger.info(this._logPrefix(connectorId) + ' transaction rejected');
await Utils.sleep(Constants.CHARGING_STATION_ATG_WAIT_TIME);
} else {
// Wait until end of transaction
const wait = Utils.getRandomInt(this._chargingStation._stationInfo.AutomaticTransactionGenerator.maxDuration,
this._chargingStation._stationInfo.AutomaticTransactionGenerator.minDuration) * 1000;
- logger.info(this._basicFormatLog(connectorId) + ' transaction ' + this._chargingStation._connectors[connectorId].transactionId + ' will stop in ' + Utils.secondstoHHMMSS(wait / 1000));
+ logger.info(this._logPrefix(connectorId) + ' transaction ' + this._chargingStation._connectors[connectorId].transactionId + ' will stop in ' + Utils.secondstoHHMMSS(wait / 1000));
await Utils.sleep(wait);
// Stop transaction
if (this._chargingStation._connectors[connectorId].transactionStarted) {
- logger.info(this._basicFormatLog(connectorId) + ' stop transaction ' + this._chargingStation._connectors[connectorId].transactionId);
+ logger.info(this._logPrefix(connectorId) + ' stop transaction ' + this._chargingStation._connectors[connectorId].transactionId);
const stopTransaction = performance.timerify(this.stopTransaction);
this._performanceObserver.observe({entryTypes: ['function']});
await stopTransaction(connectorId, this);
}
} else {
skip++;
- logger.info(this._basicFormatLog(connectorId) + ' transaction skipped ' + skip);
+ logger.info(this._logPrefix(connectorId) + ' transaction skipped ' + skip);
}
} while (!this._timeToStop);
- logger.info(this._basicFormatLog(connectorId) + ' ATG STOPPED on the connector');
+ logger.info(this._logPrefix(connectorId) + ' ATG STOPPED on the connector');
}
// eslint-disable-next-line class-methods-use-this
async startTransaction(connectorId, self) {
if (self._chargingStation.hasAuthorizedTags()) {
const tagId = self._chargingStation.getRandomTagId();
- logger.info(self._basicFormatLog(connectorId) + ' start transaction for tagID ' + tagId);
+ logger.info(self._logPrefix(connectorId) + ' start transaction for tagID ' + tagId);
return self._chargingStation.sendStartTransaction(connectorId, tagId);
}
return self._chargingStation.sendStartTransaction(connectorId);
stationTemplateFromFile = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8'));
fs.closeSync(fileDescriptor);
} catch (error) {
- logger.error(this._basicFormatLog() + ' Template file loading error: ' + error);
+ logger.error(this._logPrefix() + ' Template file loading error: ' + error);
}
const stationTemplate = stationTemplateFromFile || {};
if (!Utils.isEmptyArray(stationTemplateFromFile.power)) {
});
}
- _basicFormatLog() {
- return Utils.basicFormatLog(` ${this._stationInfo.name}:`);
+ _logPrefix() {
+ return Utils.logPrefix(` ${this._stationInfo.name}:`);
}
_getConfiguration() {
authorizedTags = JSON.parse(fs.readFileSync(fileDescriptor, 'utf8'));
fs.closeSync(fileDescriptor);
} catch (error) {
- logger.error(this._basicFormatLog() + ' Authorization file loading error: ' + error);
+ logger.error(this._logPrefix() + ' Authorization file loading error: ' + error);
}
} else {
- logger.info(this._basicFormatLog() + ' No authorization file given in template file ' + this._stationTemplateFile);
+ logger.info(this._logPrefix() + ' No authorization file given in template file ' + this._stationTemplateFile);
}
return authorizedTags;
}
self._heartbeatSetInterval = setInterval(() => {
this.sendHeartbeat();
}, self._heartbeatInterval);
- logger.info(self._basicFormatLog() + ' Heartbeat started every ' + self._heartbeatInterval + 'ms');
+ logger.info(self._logPrefix() + ' Heartbeat started every ' + self._heartbeatInterval + 'ms');
} else {
- logger.error(`${self._basicFormatLog()} Heartbeat interval set to ${self._heartbeatInterval}, not starting the heartbeat`);
+ logger.error(`${self._logPrefix()} Heartbeat interval set to ${self._heartbeatInterval}, not starting the heartbeat`);
}
}
// eslint-disable-next-line no-unused-vars
fs.watchFile(this._getAuthorizationFile(), (current, previous) => {
try {
- logger.debug(this._basicFormatLog() + ' Authorization file ' + this._getAuthorizationFile() + ' have changed, reload');
+ logger.debug(this._logPrefix() + ' Authorization file ' + this._getAuthorizationFile() + ' have changed, reload');
// Initialize _authorizedTags
this._authorizedTags = this._loadAndGetAuthorizedTags();
} catch (error) {
- logger.error(this._basicFormatLog() + ' Authorization file monitoring error: ' + error);
+ logger.error(this._logPrefix() + ' Authorization file monitoring error: ' + error);
}
});
}
// eslint-disable-next-line no-unused-vars
fs.watchFile(this._stationTemplateFile, (current, previous) => {
try {
- logger.debug(this._basicFormatLog() + ' Template file ' + this._stationTemplateFile + ' have changed, reload');
+ logger.debug(this._logPrefix() + ' Template file ' + this._stationTemplateFile + ' have changed, reload');
// Initialize
this._initialize();
this._addConfigurationKey('HeartBeatInterval', Utils.convertToInt(this._heartbeatInterval ? this._heartbeatInterval / 1000 : 0));
this._addConfigurationKey('HeartbeatInterval', Utils.convertToInt(this._heartbeatInterval ? this._heartbeatInterval / 1000 : 0), false, false);
} catch (error) {
- logger.error(this._basicFormatLog() + ' Charging station template file monitoring error: ' + error);
+ logger.error(this._logPrefix() + ' Charging station template file monitoring error: ' + error);
}
});
}
async _startMeterValues(connectorId, interval) {
if (!this._connectors[connectorId].transactionStarted) {
- logger.error(`${this._basicFormatLog()} Trying to start MeterValues on connector ID ${connectorId} with no transaction started`);
+ logger.error(`${this._logPrefix()} Trying to start MeterValues on connector ID ${connectorId} with no transaction started`);
return;
} else if (this._connectors[connectorId].transactionStarted && !this._connectors[connectorId].transactionId) {
- logger.error(`${this._basicFormatLog()} Trying to start MeterValues on connector ID ${connectorId} with no transaction id`);
+ logger.error(`${this._logPrefix()} Trying to start MeterValues on connector ID ${connectorId} with no transaction id`);
return;
}
if (interval > 0) {
await sendMeterValues(connectorId, interval, this);
}, interval);
} else {
- logger.error(`${this._basicFormatLog()} Charging station MeterValueSampleInterval configuration set to ${interval}ms, not sending MeterValues`);
+ logger.error(`${this._logPrefix()} Charging station MeterValueSampleInterval configuration set to ${interval}ms, not sending MeterValues`);
}
}
this._wsConnectionUrl = this._supervisionUrl + '/' + this._stationInfo.name;
}
this._wsConnection = new WebSocket(this._wsConnectionUrl, 'ocpp' + Constants.OCPP_VERSION_16);
- logger.info(this._basicFormatLog() + ' Will communicate through URL ' + this._supervisionUrl);
+ logger.info(this._logPrefix() + ' Will communicate through URL ' + this._supervisionUrl);
// Monitor authorization file
this._startAuthorizationFileMonitoring();
// Monitor station template file
}
_reconnect(error) {
- logger.error(this._basicFormatLog() + ' Socket: abnormally closed', error);
+ logger.error(this._logPrefix() + ' Socket: abnormally closed', error);
// Stop the ATG if needed
if (Utils.convertToBoolean(this._stationInfo.AutomaticTransactionGenerator.enable) &&
Utils.convertToBoolean(this._stationInfo.AutomaticTransactionGenerator.stopOnConnectionFailure) &&
this._stopHeartbeat();
if (this._autoReconnectTimeout !== 0 &&
(this._autoReconnectRetryCount < this._autoReconnectMaxRetries || this._autoReconnectMaxRetries === -1)) {
- logger.error(`${this._basicFormatLog()} Socket: connection retry with timeout ${this._autoReconnectTimeout}ms`);
+ logger.error(`${this._logPrefix()} Socket: connection retry with timeout ${this._autoReconnectTimeout}ms`);
this._autoReconnectRetryCount++;
setTimeout(() => {
- logger.error(this._basicFormatLog() + ' Socket: reconnecting try #' + this._autoReconnectRetryCount);
+ logger.error(this._logPrefix() + ' Socket: reconnecting try #' + this._autoReconnectRetryCount);
this.start();
}, this._autoReconnectTimeout);
} else if (this._autoReconnectTimeout !== 0 || this._autoReconnectMaxRetries !== -1) {
- logger.error(`${this._basicFormatLog()} Socket: max retries reached (${this._autoReconnectRetryCount}) or retry disabled (${this._autoReconnectTimeout})`);
+ logger.error(`${this._logPrefix()} Socket: max retries reached (${this._autoReconnectRetryCount}) or retry disabled (${this._autoReconnectTimeout})`);
}
}
onOpen() {
- logger.info(`${this._basicFormatLog()} Is connected to server through ${this._wsConnectionUrl}`);
+ logger.info(`${this._logPrefix()} Is connected to server through ${this._wsConnectionUrl}`);
if (!this._isSocketRestart) {
// Send BootNotification
this.sendBootNotification();
this._reconnect(error);
break;
default:
- logger.error(this._basicFormatLog() + ' Socket error: ' + error);
+ logger.error(this._logPrefix() + ' Socket error: ' + error);
break;
}
}
switch (error) {
case 1000: // Normal close
case 1005:
- logger.info(this._basicFormatLog() + ' Socket normally closed ' + error);
+ logger.info(this._logPrefix() + ' Socket normally closed ' + error);
this._autoReconnectRetryCount = 0;
break;
default: // Abnormal close
}
onPing() {
- logger.debug(this._basicFormatLog() + ' Has received a WS ping (rfc6455) from the server');
+ logger.debug(this._logPrefix() + ' Has received a WS ping (rfc6455) from the server');
}
async onMessage(message) {
}
} catch (error) {
// Log
- logger.error('%s Incoming message %j processing error %s on request content %s', this._basicFormatLog(), message, error, this._requests[messageId]);
+ logger.error('%s Incoming message %j processing error %s on request content %s', this._logPrefix(), message, error, this._requests[messageId]);
// Send error
// await this.sendError(messageId, error);
}
};
this.sendMessage(Utils.generateUUID(), payload, Constants.OCPP_JSON_CALL_MESSAGE, 'Heartbeat');
} catch (error) {
- logger.error(this._basicFormatLog() + ' Send Heartbeat error: ' + error);
+ logger.error(this._logPrefix() + ' Send Heartbeat error: ' + error);
throw error;
}
}
try {
this.sendMessage(Utils.generateUUID(), this._bootNotificationMessage, Constants.OCPP_JSON_CALL_MESSAGE, 'BootNotification');
} catch (error) {
- logger.error(this._basicFormatLog() + ' Send BootNotification error: ' + error);
+ logger.error(this._logPrefix() + ' Send BootNotification error: ' + error);
throw error;
}
}
};
await this.sendMessage(Utils.generateUUID(), payload, Constants.OCPP_JSON_CALL_MESSAGE, 'StatusNotification');
} catch (error) {
- logger.error(this._basicFormatLog() + ' Send StatusNotification error: ' + error);
+ logger.error(this._logPrefix() + ' Send StatusNotification error: ' + error);
throw error;
}
}
};
return await this.sendMessage(Utils.generateUUID(), payload, Constants.OCPP_JSON_CALL_MESSAGE, 'StartTransaction');
} catch (error) {
- logger.error(this._basicFormatLog() + ' Send StartTransaction error: ' + error);
+ logger.error(this._logPrefix() + ' Send StartTransaction error: ' + error);
throw error;
}
}
}
await this.sendMessage(Utils.generateUUID(), payload, Constants.OCPP_JSON_CALL_MESSAGE, 'StopTransaction');
} catch (error) {
- logger.error(this._basicFormatLog() + ' Send StopTransaction error: ' + error);
+ logger.error(this._logPrefix() + ' Send StopTransaction error: ' + error);
throw error;
}
}
sampledValueLcl.sampledValue[index].value :
sampledValueLcl.sampledValue[index].value = Utils.getRandomInt(100);
if (sampledValueLcl.sampledValue[index].value > 100 || debug) {
- logger.error(`${self._basicFormatLog()} MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'}: connectorId ${connectorId}, transaction ${connector.transactionId}, value: ${sampledValueLcl.sampledValue[index].value}`);
+ logger.error(`${self._logPrefix()} MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'}: connectorId ${connectorId}, transaction ${connector.transactionId}, value: ${sampledValueLcl.sampledValue[index].value}`);
}
// Voltage measurand
} else if (sampledValueLcl.sampledValue[index].measurand && sampledValueLcl.sampledValue[index].measurand === 'Voltage') {
}
sampledValueLcl.sampledValue[index].value = connector.lastEnergyActiveImportRegisterValue;
}
- logger.info(`${self._basicFormatLog()} MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'}: connectorId ${connectorId}, transaction ${connector.transactionId}, value ${sampledValueLcl.sampledValue[index].value}`);
+ logger.info(`${self._logPrefix()} MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'}: connectorId ${connectorId}, transaction ${connector.transactionId}, value ${sampledValueLcl.sampledValue[index].value}`);
const maxConsumption = self._stationInfo.maxPower * 3600 / interval;
if (sampledValueLcl.sampledValue[index].value > maxConsumption || debug) {
- logger.error(`${self._basicFormatLog()} MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'}: connectorId ${connectorId}, transaction ${connector.transactionId}, value: ${sampledValueLcl.sampledValue[index].value}/${maxConsumption}`);
+ logger.error(`${self._logPrefix()} MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'}: connectorId ${connectorId}, transaction ${connector.transactionId}, value: ${sampledValueLcl.sampledValue[index].value}/${maxConsumption}`);
}
// Unsupported measurand
} else {
- logger.info(`${self._basicFormatLog()} Unsupported MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'} on connectorId ${connectorId}`);
+ logger.info(`${self._logPrefix()} Unsupported MeterValues measurand ${sampledValueLcl.sampledValue[index].measurand ? sampledValueLcl.sampledValue[index].measurand : 'Energy.Active.Import.Register'} on connectorId ${connectorId}`);
}
}
};
await self.sendMessage(Utils.generateUUID(), payload, Constants.OCPP_JSON_CALL_MESSAGE, 'MeterValues');
} catch (error) {
- logger.error(self._basicFormatLog() + ' Send MeterValues error: ' + error);
+ logger.error(self._logPrefix() + ' Send MeterValues error: ' + error);
throw error;
}
}
if (typeof self[responseCallbackFn] === 'function') {
self[responseCallbackFn](payload, requestPayload, self);
} else {
- logger.debug(self._basicFormatLog() + ' Trying to call an undefined response callback function: ' + responseCallbackFn);
+ logger.debug(self._logPrefix() + ' Trying to call an undefined response callback function: ' + responseCallbackFn);
}
// Send the response
resolve(payload);
this._addConfigurationKey('HeartbeatInterval', Utils.convertToInt(payload.interval), false, false);
this._basicStartMessageSequence();
} else if (payload.status === 'Pending') {
- logger.info(this._basicFormatLog() + ' Charging station pending on the central server');
+ logger.info(this._logPrefix() + ' Charging station pending on the central server');
} else {
- logger.info(this._basicFormatLog() + ' Charging station rejected by the central server');
+ logger.info(this._logPrefix() + ' Charging station rejected by the central server');
}
}
handleResponseStartTransaction(payload, requestPayload) {
if (this._connectors[requestPayload.connectorId].transactionStarted) {
- logger.debug(this._basicFormatLog() + ' Try to start a transaction on an already used connector ' + requestPayload.connectorId + ': %s', this._connectors[requestPayload.connectorId]);
+ logger.debug(this._logPrefix() + ' Try to start a transaction on an already used connector ' + requestPayload.connectorId + ': %s', this._connectors[requestPayload.connectorId]);
return;
}
}
}
if (!transactionConnectorId) {
- logger.error(this._basicFormatLog() + ' Try to start a transaction on a non existing connector Id ' + requestPayload.connectorId);
+ logger.error(this._logPrefix() + ' Try to start a transaction on a non existing connector Id ' + requestPayload.connectorId);
return;
}
if (payload.idTagInfo && payload.idTagInfo.status === 'Accepted') {
this._connectors[transactionConnectorId].idTag = requestPayload.idTag;
this._connectors[transactionConnectorId].lastEnergyActiveImportRegisterValue = 0;
this.sendStatusNotification(requestPayload.connectorId, 'Charging');
- logger.info(this._basicFormatLog() + ' Transaction ' + payload.transactionId + ' STARTED on ' + this._stationInfo.name + '#' + requestPayload.connectorId + ' for idTag ' + requestPayload.idTag);
+ logger.info(this._logPrefix() + ' Transaction ' + payload.transactionId + ' STARTED on ' + this._stationInfo.name + '#' + requestPayload.connectorId + ' for idTag ' + requestPayload.idTag);
const configuredMeterValueSampleInterval = this._getConfigurationKey('MeterValueSampleInterval');
this._startMeterValues(requestPayload.connectorId,
configuredMeterValueSampleInterval ? configuredMeterValueSampleInterval.value * 1000 : 60000);
} else {
- logger.error(this._basicFormatLog() + ' Starting transaction id ' + payload.transactionId + ' REJECTED with status ' + payload.idTagInfo.status + ', idTag ' + requestPayload.idTag);
+ logger.error(this._logPrefix() + ' Starting transaction id ' + payload.transactionId + ' REJECTED with status ' + payload.idTagInfo.status + ', idTag ' + requestPayload.idTag);
this._resetTransactionOnConnector(transactionConnectorId);
this.sendStatusNotification(requestPayload.connectorId, 'Available');
}
}
}
if (!transactionConnectorId) {
- logger.error(this._basicFormatLog() + ' Try to stop a non existing transaction ' + requestPayload.transactionId);
+ logger.error(this._logPrefix() + ' Try to stop a non existing transaction ' + requestPayload.transactionId);
return;
}
if (payload.idTagInfo && payload.idTagInfo.status === 'Accepted') {
this.sendStatusNotification(transactionConnectorId, 'Available');
- logger.info(this._basicFormatLog() + ' Transaction ' + requestPayload.transactionId + ' STOPPED on ' + this._stationInfo.name + '#' + transactionConnectorId);
+ logger.info(this._logPrefix() + ' Transaction ' + requestPayload.transactionId + ' STOPPED on ' + this._stationInfo.name + '#' + transactionConnectorId);
this._resetTransactionOnConnector(transactionConnectorId);
} else {
- logger.error(this._basicFormatLog() + ' Stopping transaction id ' + requestPayload.transactionId + ' REJECTED with status ' + payload.idTagInfo.status);
+ logger.error(this._logPrefix() + ' Stopping transaction id ' + requestPayload.transactionId + ' REJECTED with status ' + payload.idTagInfo.status);
}
}
handleResponseStatusNotification(payload, requestPayload) {
- logger.debug(this._basicFormatLog() + ' Status notification response received: %j to StatusNotification request: %j', payload, requestPayload);
+ logger.debug(this._logPrefix() + ' Status notification response received: %j to StatusNotification request: %j', payload, requestPayload);
}
handleResponseMeterValues(payload, requestPayload) {
- logger.debug(this._basicFormatLog() + ' MeterValues response received: %j to MeterValues request: %j', payload, requestPayload);
+ logger.debug(this._logPrefix() + ' MeterValues response received: %j to MeterValues request: %j', payload, requestPayload);
}
handleResponseHeartbeat(payload, requestPayload) {
- logger.debug(this._basicFormatLog() + ' Heartbeat response received: %j to Heartbeat request: %j', payload, requestPayload);
+ logger.debug(this._logPrefix() + ' Heartbeat response received: %j to Heartbeat request: %j', payload, requestPayload);
}
async handleRequest(messageId, commandName, commandPayload) {
result = await this['handle' + commandName](commandPayload);
} catch (error) {
// Log
- logger.error(this._basicFormatLog() + ' Handle request error: ' + error);
+ logger.error(this._logPrefix() + ' Handle request error: ' + error);
// Send back response to inform backend
await this.sendError(messageId, error);
}
await Utils.sleep(this._stationInfo.resetTime);
await this.start();
});
- logger.info(`${this._basicFormatLog()} ${commandPayload.type} reset command received, simulating it. The station will be back online in ${this._stationInfo.resetTime}ms`);
+ logger.info(`${this._logPrefix()} ${commandPayload.type} reset command received, simulating it. The station will be back online in ${this._stationInfo.resetTime}ms`);
return Constants.OCPP_RESPONSE_ACCEPTED;
}
if (this._authorizedTags.find((value) => value === commandPayload.idTag)) {
// Authorization successful start transaction
this.sendStartTransactionWithTimeout(transactionConnectorID, commandPayload.idTag, Constants.START_TRANSACTION_TIMEOUT);
- logger.debug(this._basicFormatLog() + ' Transaction remotely STARTED on ' + this._stationInfo.name + '#' + transactionConnectorID + ' for idTag ' + commandPayload.idTag);
+ logger.debug(this._logPrefix() + ' Transaction remotely STARTED on ' + this._stationInfo.name + '#' + transactionConnectorID + ' for idTag ' + commandPayload.idTag);
return Constants.OCPP_RESPONSE_ACCEPTED;
}
- logger.error(this._basicFormatLog() + ' Remote starting transaction REJECTED with status ' + commandPayload.idTagInfo.status + ', idTag ' + commandPayload.idTag);
+ logger.error(this._logPrefix() + ' Remote starting transaction REJECTED with status ' + commandPayload.idTagInfo.status + ', idTag ' + commandPayload.idTag);
return Constants.OCPP_RESPONSE_REJECTED;
}
// No local authorization check required => start transaction
this.sendStartTransactionWithTimeout(transactionConnectorID, commandPayload.idTag, Constants.START_TRANSACTION_TIMEOUT);
- logger.debug(this._basicFormatLog() + ' Transaction remotely STARTED on ' + this._stationInfo.name + '#' + transactionConnectorID + ' for idTag ' + commandPayload.idTag);
+ logger.debug(this._logPrefix() + ' Transaction remotely STARTED on ' + this._stationInfo.name + '#' + transactionConnectorID + ' for idTag ' + commandPayload.idTag);
return Constants.OCPP_RESPONSE_ACCEPTED;
}
return Constants.OCPP_RESPONSE_ACCEPTED;
}
}
- logger.info(this._basicFormatLog() + ' Try to stop remotely a non existing transaction ' + commandPayload.transactionId);
+ logger.info(this._logPrefix() + ' Try to stop remotely a non existing transaction ' + commandPayload.transactionId);
return Constants.OCPP_RESPONSE_REJECTED;
}
}