Skip to content

Commit 3569fe2

Browse files
authored
Merge pull request #21 from chfritz/Issue#6
Fix log.debug fails when waiting for ROS Master #13
2 parents ae121f9 + 7f106d8 commit 3569fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/xmlrpc_utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
}
2020
log.debug('Trying again in ' + timeout + 'ms');
2121
log.debug('Connection refused during method %s: %j', method, data);
22-
this.call(method, data, resolve, reject, timeout);
22+
this.call(client, method, data, resolve, reject, log, timeout);
2323
}
2424
else if (err || resp[0] !== 1) {
2525
log.debug('Some other error during %s: %s, %j', method, err, resp);

0 commit comments

Comments
 (0)