Skip to content

Commit

Permalink
Fix logging module loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Max107 committed Sep 5, 2015
1 parent f26552d commit 8740d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mindy/Application/BaseApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public function getModule($id)
} elseif (isset($this->_moduleConfig[$id])) {
$config = $this->_moduleConfig[$id];
if (!isset($config['enabled']) || $config['enabled']) {
Mindy::app()->logger->info("Loading \"$id\" module", [], 'module');
Mindy::app()->logger->debug("Loading \"$id\" module", $config, 'module');
$class = $config['class'];
unset($config['class'], $config['enabled']);
if ($this === Mindy::app()) {
Expand Down

0 comments on commit 8740d16

Please sign in to comment.