@@ -77,8 +77,7 @@ module.exports = function(req, res) {
// strip dashes
userId = userId.replace(/-/g, "");
- logging.log(rid, "userid:", userId);
-
+ logging.debug(rid, "userid:", userId);
try {
helpers.get_avatar(rid, userId, helm, size, function(err, status, image, hash) {
@@ -42,7 +42,7 @@ module.exports = function(req, res) {
helpers.get_cape(rid, userId, function(err, status, image, hash) {
@@ -105,7 +105,7 @@ module.exports = function(req, res) {
- logging.log(rid, "userId:", userId);
+ logging.debug(rid, "userId:", userId);
helpers.get_render(rid, userId, scale, helm, body, function(err, status, hash, image) {
@@ -62,7 +62,7 @@ module.exports = function(req, res) {
helpers.get_skin(rid, userId, function(err, hash, image) {
@@ -49,7 +49,7 @@ function requestHandler(req, res) {
request.id = Math.random().toString(36).substring(2, 14);
var local_path = request.url.path_list[1];
- logging.log(request.id + request.method, request.url.href);
+ logging.log(request.id, request.method, request.url.href);
if (request.method === "GET" || request.method === "HEAD") {
switch (local_path) {