aboutsummaryrefslogtreecommitdiffstats
path: root/MainApp.php
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2010-07-09 09:24:49 +0300
committerFilipp Lepalaan <filipp@mac.com>2010-07-09 09:24:49 +0300
commitb4cd2ad59440171ea330ddaad28b4743d4936b51 (patch)
tree62d9d58ece9e1fb07356f4cf12119b7f5be1f88f /MainApp.php
parent92733d581c1b810771606ffb18722c1b6294f040 (diff)
downloadmain-b4cd2ad59440171ea330ddaad28b4743d4936b51.tar.gz
main-b4cd2ad59440171ea330ddaad28b4743d4936b51.tar.bz2
main-b4cd2ad59440171ea330ddaad28b4743d4936b51.zip
better logging
Diffstat (limited to 'MainApp.php')
-rw-r--r--MainApp.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/MainApp.php b/MainApp.php
index 4bf4543..96050b0 100644
--- a/MainApp.php
+++ b/MainApp.php
@@ -130,7 +130,7 @@ class MainApp
static function error($msg)
{
- $err = array('result' => 'error', 'msg' => $msg);
+ $err = array('error' => $msg);
trigger_error($msg, E_USER_ERROR);
// And log it locally
self::log($msg);
@@ -158,7 +158,7 @@ class MainApp
foreach (func_get_args() as $arg)
{
- if (is_array($arg)) {
+ if (is_array($arg) || is_object($arg)) {
$arg = print_r($arg, true);
}
fwrite($fh, date('r') . "\t" . trim($arg) . "\n");