Skip to content

Commit

Permalink
Merge pull request #56 from dan-luk/pubapi-982
Browse files Browse the repository at this point in the history
PUBAPI-982 console.log -> log.debug
  • Loading branch information
kusor committed Aug 25, 2014
2 parents a452bd5 + 67dea08 commit 0fa5fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cloudapi.js
Expand Up @@ -3941,7 +3941,7 @@ CloudAPI.prototype._get = function (req, callback, noCache) {
if (!noCache) {
var cached = this._cacheGet(req.path, req.cacheTTL);
if (cached && cached.obj) {
console.log('Getting %s from cache', req.path);
log.debug('Getting %s from cache', req.path);
if (cached.obj instanceof Error)
return callback(cached.obj);

Expand Down

0 comments on commit 0fa5fc9

Please sign in to comment.