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}); }); }