diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-07-24 16:44:26 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-07-24 16:46:21 -0400 |
commit | 33d07e89102a18068529562753fab6b1cf5f2acf (patch) | |
tree | ac626ad0d23ab6ac6f8680bbf927849444626fe2 /lib/class/vauth.class.php | |
parent | a22776e9543442ed18b64ceeec84029878d7716f (diff) | |
download | ampache-33d07e89102a18068529562753fab6b1cf5f2acf.tar.gz ampache-33d07e89102a18068529562753fab6b1cf5f2acf.tar.bz2 ampache-33d07e89102a18068529562753fab6b1cf5f2acf.zip |
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.
Diffstat (limited to 'lib/class/vauth.class.php')
-rw-r--r-- | lib/class/vauth.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 ''; } |