From 33d07e89102a18068529562753fab6b1cf5f2acf Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Tue, 24 Jul 2012 16:44:26 -0400 Subject: Make a debug message less alarming It's expected that reading from sessions will fail after expiry or before login. Remove the word 'error' from the logged message and bump it down a few levels. --- lib/class/vauth.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/class/vauth.class.php b/lib/class/vauth.class.php index 30dfe10c..5e928039 100644 --- a/lib/class/vauth.class.php +++ b/lib/class/vauth.class.php @@ -83,7 +83,7 @@ class vauth { $results = self::get_session_data($key); if (!is_array($results)) { - debug_event('SESSION', 'Error unable to read session from key ' . $key . ' no data found', '1'); + debug_event('SESSION', 'Unable to read session from key ' . $key . ' no data found', 5); return ''; } -- cgit