diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-12-13 16:52:18 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-12-13 16:52:18 -0800 |
commit | c65cd702fc8e732416f13f4eb21c8e8e95b09c28 (patch) | |
tree | e264380ae453672d4f47386e24d84ce62f32e73c /modules/gallery/helpers | |
parent | d5c35210b90565e7a6e79b86288b843b8e3b835e (diff) | |
parent | 7515b424e00831e9588a48ab46eca0405dde250f (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev
Conflicts:
modules/gallery/helpers/identity.php
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/identity.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gallery/helpers/identity.php b/modules/gallery/helpers/identity.php index 05614559..707d1830 100644 --- a/modules/gallery/helpers/identity.php +++ b/modules/gallery/helpers/identity.php @@ -82,7 +82,8 @@ class identity_Core { } } catch (Exception $e) { // Log it, so we at least have so notification that we swallowed the exception. - Kohana_Log::add("error", "Load_user Exception: " . $e->__toString()); + Kohana_Log::add("error", "Load_user Exception: " . + $e->getMessage() . "\n" . $e->getTraceAsString()); try { Session::instance()->destroy(); } catch (Exception $e) { |