diff options
author | xue <> | 2006-02-07 16:47:06 +0000 |
---|---|---|
committer | xue <> | 2006-02-07 16:47:06 +0000 |
commit | ee2e653ec9da8cc311989acf6b21b78d32cc80c3 (patch) | |
tree | 3cbd8223113c649a697dcd33d48bd9ce6be3e72c /framework/Log | |
parent | eeb88f732f428e88b354271d61c3995041586025 (diff) |
Added OnExitApplication event to TApplication.
Diffstat (limited to 'framework/Log')
-rw-r--r-- | framework/Log/TLogRouter.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/Log/TLogRouter.php b/framework/Log/TLogRouter.php index 4b6141e4..06877f0f 100644 --- a/framework/Log/TLogRouter.php +++ b/framework/Log/TLogRouter.php @@ -68,8 +68,7 @@ class TLogRouter extends TModule throw new TConfigurationException('logrouter_configfile_invalid',$this->_configFile);
}
$this->loadConfig($config);
- $this->getApplication()->attachEventHandler('OnError',array($this,'collectLogs'));
- $this->getApplication()->attachEventHandler('OnEndRequest',array($this,'collectLogs'));
+ $this->getApplication()->attachEventHandler('OnExitApplication',array($this,'collectLogs'));
}
/**
|