diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-12-06 15:57:41 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-12-06 15:57:41 -0500 |
commit | 34048c28047f6107d5dd72679081544c9adfa4cf (patch) | |
tree | f5868dcf2b861752fb1e709aa867620fee4a91ac /app/Subscriber/BootstrapSubscriber.php | |
parent | abe2130021e6a11334f3297ba897784620b9156d (diff) |
Add line separator in debug logs
Diffstat (limited to 'app/Subscriber/BootstrapSubscriber.php')
-rw-r--r-- | app/Subscriber/BootstrapSubscriber.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Subscriber/BootstrapSubscriber.php b/app/Subscriber/BootstrapSubscriber.php index cc0bc06d..ed51a3e1 100644 --- a/app/Subscriber/BootstrapSubscriber.php +++ b/app/Subscriber/BootstrapSubscriber.php @@ -30,6 +30,7 @@ class BootstrapSubscriber extends \Kanboard\Core\Base implements EventSubscriber $this->logger->debug('RENDERING={time}', array('time' => microtime(true) - $this->request->getStartTime())); $this->logger->debug('MEMORY='.$this->helper->text->bytes(memory_get_usage())); $this->logger->debug('URI='.$this->request->getUri()); + $this->logger->debug('###############################################'); } } } |