diff options
author | xue <> | 2006-02-08 22:33:11 +0000 |
---|---|---|
committer | xue <> | 2006-02-08 22:33:11 +0000 |
commit | 682d48577ae6e0118a11e5e6134fdbbb6048456d (patch) | |
tree | f1210e77e88ff2dc4e565f78fdf0227ee5c80ebb /framework/Log | |
parent | b4103f28384d4ce9b5dc8e8a1abfda378eb42db0 (diff) |
Updated application lifecycle and related tutorial description.
Diffstat (limited to 'framework/Log')
-rw-r--r-- | framework/Log/TLogRouter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Log/TLogRouter.php b/framework/Log/TLogRouter.php index 06877f0f..5326b598 100644 --- a/framework/Log/TLogRouter.php +++ b/framework/Log/TLogRouter.php @@ -68,7 +68,7 @@ class TLogRouter extends TModule throw new TConfigurationException('logrouter_configfile_invalid',$this->_configFile);
}
$this->loadConfig($config);
- $this->getApplication()->attachEventHandler('OnExitApplication',array($this,'collectLogs'));
+ $this->getApplication()->attachEventHandler('OnEndRequest',array($this,'collectLogs'));
}
/**
|