- fixed some minor _ESI_ request errors on failed requests

This commit is contained in:
Mark Friedrich
2019-02-28 20:10:59 +01:00
parent edef4eb599
commit 3223843ef6
3 changed files with 6 additions and 34 deletions

View File

@@ -949,9 +949,9 @@ class Controller {
* get a Logger object by Hive key
* -> set in pathfinder.ini
* @param string $type
* @return \Log|null
* @return \Log
*/
static function getLogger($type){
static function getLogger($type = 'DEBUG') : \Log {
return LogController::getLogger($type);
}