summaryrefslogtreecommitdiff
path: root/framework/TApplication.php
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-25 20:04:57 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-25 20:04:57 +0100
commite4999b25052d1ad9400a0f9fd5289a49eea1bddc (patch)
tree50e9b819fc3326cf08e882b648f8dafc8fec3fa4 /framework/TApplication.php
parent5230f8f8a86fc1ae5d90f8c74ae65c93e197502b (diff)
More namespace changes
Changed version to 3.2.99; Attempt at fixing autoloading fixed enough namespaces to have some demos running
Diffstat (limited to 'framework/TApplication.php')
-rw-r--r--framework/TApplication.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php
index 63ea72b8..286a6895 100644
--- a/framework/TApplication.php
+++ b/framework/TApplication.php
@@ -386,7 +386,7 @@ class TApplication extends \Prado\TComponent
if($this->_requestCompleted)
break;
$method=self::$_steps[$this->_step];
- Prado::trace("Executing $method()",'System.TApplication');
+ Prado::trace("Executing $method()",'Prado\TApplication');
$this->$method();
$this->_step++;
}
@@ -539,7 +539,7 @@ class TApplication extends \Prado\TComponent
*/
public function setMode($value)
{
- $this->_mode=TPropertyValue::ensureEnum($value,'TApplicationMode');
+ $this->_mode=TPropertyValue::ensureEnum($value,'\Prado\TApplicationMode');
}
/**
@@ -1042,7 +1042,7 @@ class TApplication extends \Prado\TComponent
*/
protected function initApplication()
{
- Prado::trace('Initializing application','System.TApplication');
+ Prado::trace('Initializing application','Prado\TApplication');
if($this->_configFile!==null)
{
@@ -1111,7 +1111,7 @@ class TApplication extends \Prado\TComponent
*/
public function onError($param)
{
- Prado::log($param->getMessage(),TLogger::ERROR,'System.TApplication');
+ Prado::log($param->getMessage(),TLogger::ERROR,'Prado\TApplication');
$this->raiseEvent('OnError',$this,$param);
$this->getErrorHandler()->handleError($this,$param);
}