LINXD-2396: Added error informations; Update to send gps from interval(min-max)

This commit is contained in:
Sergiu Toma 2023-05-03 17:20:46 +03:00
parent faa8e8099e
commit e2b3b35e33
1 changed files with 4 additions and 3 deletions

View File

@ -90,8 +90,9 @@ class Asset {
this.hubAddress = data.configuration.hub_address;
return callback();
} else {
utils.writeLog(`_getConfiguration | response ${JSON.stringify(response)} | body: ${JSON.stringify(body)}`)
utils.writeLog(`ERROR getting informations about asset ${this.id}`, error);
utils.writeErrorLog(`ERROR_API`);
utils.writeErrorLog(`ERROR_API | _getConfiguration`);
return callback(error);
}
}
@ -99,7 +100,7 @@ class Asset {
}
_checkGroupToJoin(callback) {
console.log('_getConfiguration', this.id);
console.log('_checkGroupToJoin', this.id);
Request.get(
this.apiEndpoint + '/assets/' + this.id + '/groups',
{
@ -119,7 +120,7 @@ class Asset {
return;
}
} else {
utils.writeLog(`_getConfiguration | response ${JSON.stringify(response)} | body: ${JSON.stringify(body)}`)
utils.writeLog(`_checkGroupToJoin | response ${JSON.stringify(response)} | body: ${JSON.stringify(body)}`)
utils.writeLog(`ERROR getting informations about asset ${this.id}`, error);
utils.writeErrorLog(`ERROR_API | _checkGroupToJoin`);
return callback(error);