Add line separator in debug logs

This commit is contained in:
Frederic Guillot 2015-12-06 15:57:41 -05:00
parent abe2130021
commit 34048c2804
1 changed files with 1 additions and 0 deletions

View File

@ -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('###############################################');
}
}
}