Fix missing Icinga\Application\Logger import in module manager
refs #4530
This commit is contained in:
parent
392e568bf8
commit
d604b01349
|
@ -4,11 +4,12 @@
|
|||
|
||||
namespace Icinga\Application\Modules;
|
||||
|
||||
use Icinga\Application\ApplicationBootstrap;
|
||||
use Icinga\Application\Icinga;
|
||||
use Icinga\Exception\ConfigurationError;
|
||||
use Icinga\Exception\SystemPermissionException;
|
||||
use Icinga\Exception\ProgrammingError;
|
||||
use \Icinga\Application\ApplicationBootstrap;
|
||||
use \Icinga\Application\Icinga;
|
||||
use \Icinga\Application\Logger;
|
||||
use \Icinga\Exception\ConfigurationError;
|
||||
use \Icinga\Exception\SystemPermissionException;
|
||||
use \Icinga\Exception\ProgrammingError;
|
||||
|
||||
/**
|
||||
* Module manager that handles detecting, enabling and disabling of modules
|
||||
|
|
|
@ -28,11 +28,11 @@
|
|||
|
||||
namespace Icinga\Application\Modules;
|
||||
|
||||
use Icinga\Application\ApplicationBootstrap;
|
||||
use \Icinga\Application\ApplicationBootstrap;
|
||||
use \Icinga\Application\Config;
|
||||
use Icinga\Application\Icinga;
|
||||
use Icinga\Web\Hook;
|
||||
use Zend_Controller_Router_Route as Route;
|
||||
use \Icinga\Application\Icinga;
|
||||
use \Icinga\Web\Hook;
|
||||
use \Zend_Controller_Router_Route as Route;
|
||||
|
||||
/**
|
||||
* Module handling
|
||||
|
|
Loading…
Reference in New Issue