Merge branch 'develop' of https://github.com/ripple/ripple-lib into develop

This commit is contained in:
wltsmrz
2014-02-28 16:27:24 -08:00
6 changed files with 147 additions and 44 deletions

View File

@@ -30,6 +30,7 @@ var RippleError = require('./rippleerror').RippleError;
var utils = require('./utils');
var sjcl = require('./utils').sjcl;
var config = require('./config');
var log = require('./log').internal.sub('remote');
/**
Interface to manage the connection to a Ripple server.
@@ -373,7 +374,7 @@ Remote.prototype.setSecret = function(account, secret) {
Remote.prototype._trace = function() {
if (this.trace) {
utils.logObject.apply(utils, arguments);
log.info.apply(log, arguments);
}
};