Skip to content

Commit

Permalink
Merge pull request #516 from telefonicaid/bug/smallDocAndLogTypos
Browse files Browse the repository at this point in the history
FIX Small typos
  • Loading branch information
XavierVal authored Nov 8, 2016
2 parents abbc0c7 + c71e4f9 commit 58b1958
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -805,12 +805,12 @@ The following `attributes` section shows an example of the plugin configuration:
"expression": "${latitude}, ${longitude}",
"reverse": [
{
"object_id":"latitude",
"object_id":"longitude",
"type": "string",
"expression": "${trim(substr(@location, indexOf(@location, \",\") + 1, length(@location)))}"
},
{
"object_id":"longitude",
"object_id":"latitude",
"type": "string",
"expression": "${trim(substr(@location, 0, indexOf(@location, \",\")))}"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/services/commands/commandService.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function markAsExpired(command) {
updateExpiredCommand
], function(error) {
if (error) {
logger.error(context, 'Error updating polling command to expire: %s', error);
logger.error(context, 'Error updating polling command to expire: %j', error);
} else {
logger.debug(context, 'Command successfully expired');
}
Expand Down

0 comments on commit 58b1958

Please sign in to comment.