Skip to content

Commit

Permalink
fixed #175 DotEnvConfiguration null object access.
Browse files Browse the repository at this point in the history
  • Loading branch information
lesstif committed Aug 9, 2018
1 parent 3a6879f commit abcbbb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JiraClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ public function __construct(ConfigurationInterface $configuration = null, Logger
} else {
$this->log = new Logger('JiraClient');
$this->log->pushHandler(new StreamHandler(
$configuration->getJiraLogFile(),
$this->convertLogLevel($configuration->getJiraLogLevel())
$this->configuration->getJiraLogFile(),
$this->convertLogLevel($this->configuration->getJiraLogLevel())
));
}

Expand Down

0 comments on commit abcbbb7

Please sign in to comment.