Drop the username from the log id for now; seems to trigger an error loop in some circumstances

This commit is contained in:
Brion Vibber 2009-11-27 13:29:33 -08:00
parent 58a75b0968
commit 9f075a6898
1 changed files with 1 additions and 6 deletions

View File

@ -1064,12 +1064,7 @@ function common_request_id()
$url = $_SERVER['REQUEST_URI'];
}
$method = $_SERVER['REQUEST_METHOD'];
if (common_logged_in()) {
$user = common_current_user()->nickname;
} else {
$user = 'anon';
}
return "$pid.$req_id $user $method $url";
return "$pid.$req_id $method $url";
}
}