diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-27 09:45:26 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-27 09:45:26 +0000 |
commit | c95c17b13311c23998f494ce982da7c633a9285d (patch) | |
tree | 3c8172e9837ddb78dbba33c962d40ef384ff6a4f /core/controllers | |
parent | 92ca1ba9abb37e49df83e5c313d00b16c19efc66 (diff) |
Centralize logging around installing/uninstalling modules.
Diffstat (limited to 'core/controllers')
-rw-r--r-- | core/controllers/welcome.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/controllers/welcome.php b/core/controllers/welcome.php index 3bfcf1fd..1f037d23 100644 --- a/core/controllers/welcome.php +++ b/core/controllers/welcome.php @@ -55,6 +55,7 @@ class Welcome_Controller extends Template_Controller { if ($module_name == "*") { foreach ($this->_read_modules() as $module_name => $version) { if (empty($version)) { + Kohana::log("debug", "${module_name}_install (initial)"); call_user_func(array("${module_name}_installer", "install")); } } |