From 3cbd59c769b639556dd4cca3841c21acf79ebcf8 Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 4 Sep 2012 22:47:56 +0200 Subject: [PATCH] Update src/node/db/AuthorManager.js --- src/node/db/AuthorManager.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node/db/AuthorManager.js b/src/node/db/AuthorManager.js index 6fe38abe2..2a6625c85 100644 --- a/src/node/db/AuthorManager.js +++ b/src/node/db/AuthorManager.js @@ -153,7 +153,6 @@ exports.getAuthorName = function (authorID, callback) console.log(authorID); db.getSub("globalAuthor:" + authorID, ["name"], function(err, authorName){ if(ERR(err, callback)) return; - console.log(authorName); callback(null, {authorName: authorName}); }); }