From 2d38bd20cb3e38c85ab07fb4db23c1f7e632a73e Mon Sep 17 00:00:00 2001 From: jomo Date: Sat, 3 Jan 2015 09:54:12 +0100 Subject: [PATCH] remove useless newline log --- modules/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/helpers.js b/modules/helpers.js index 2362ebd..42f06af 100644 --- a/modules/helpers.js +++ b/modules/helpers.js @@ -131,7 +131,7 @@ exp.get_image_hash = function(uuid, callback) { // image is the user's face+helm when helm is true, or the face otherwise // for status, see get_image_hash exp.get_avatar = function(uuid, helm, size, callback) { - logging.log("\nrequest: " + uuid); + logging.log("request: " + uuid); exp.get_image_hash(uuid, function(err, status, hash) { if (hash) { var facepath = __dirname + "/../" + config.faces_dir + hash + ".png";