diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-27 00:00:43 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-27 00:00:43 -0400 |
commit | 1823430d13508fec5de39264bb4fe1224716def2 (patch) | |
tree | f911a412f1b8be2471bcb66c7fed8adf675c8d4a /app/Controller | |
parent | 7a22f4c6d47a3e5d447ebeeef094092a4a4b0ad2 (diff) |
PicoDb update
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php index 19bb9ac9..cab70c6b 100644 --- a/app/Controller/Base.php +++ b/app/Controller/Base.php @@ -65,7 +65,7 @@ abstract class Base extends \Core\Base $this->container['logger']->debug($message); } - $this->container['logger']->debug('SQL_QUERIES={nb}', array('nb' => $this->container['db']->nb_queries)); + $this->container['logger']->debug('SQL_QUERIES={nb}', array('nb' => $this->container['db']->nbQueries)); $this->container['logger']->debug('RENDERING={time}', array('time' => microtime(true) - @$_SERVER['REQUEST_TIME_FLOAT'])); $this->container['logger']->debug('END_REQUEST='.$_SERVER['REQUEST_URI']); } |