From 31db4cd94e8afd6e0a59d17253b1db6ebb765900 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 8 Jul 2008 02:42:41 -0400 Subject: more debug output for rememberme cookies darcs-hash:20080708064241-84dde-6c72e4e5d5ec5675bdef027e1b241f0555ce8dd1.gz --- lib/util.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index 8984c1c82..60242eaf7 100644 --- a/lib/util.php +++ b/lib/util.php @@ -481,6 +481,7 @@ function common_rememberme() { common_log_db_error($rm, 'INSERT', __FILE__); return false; } + common_log(LOG_INFO, 'adding rememberme cookie for ' . $user->nickname); common_set_cookie(REMEMBERME, implode(':', array($rm->user_id, $rm->code)), time() + REMEMBERME_EXPIRY); @@ -504,6 +505,7 @@ function common_remembered_user() { common_log_db_error($rm, 'DELETE', __FILE__); $user = NULL; } else { + common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code); common_set_user($user->nickname); common_real_login(false); # We issue a new cookie, so they can log in -- cgit v1.2.3-54-g00ecf