Skip to content

Commit

Permalink
Merge pull request #4 from twoldanski/bugfix/logs
Browse files Browse the repository at this point in the history
[BUGFIX] change lvl of logs from error to debug (avoid clutter of logs)
  • Loading branch information
lukaszuznanski authored Mar 3, 2022
2 parents 7dbeb61 + 84a6d3d commit 71fc0fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/CacheManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function execute(): void
$this->logger->error('error: ' . curl_error($ch));
} else {
$info = curl_getinfo($ch);
$this->logger->error('info: ', $info);
$this->logger->debug('info: ', $info);
}
curl_multi_remove_handle($multiHandle, $ch);
curl_close($ch);
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'title' => 'Cache Purger',
'description' => 'Purge cached URLs within Varnish instances',
'category' => 'misc',
'version' => '1.0.3',
'version' => '1.0.4',
'state' => 'stable',
'clearCacheOnLoad' => 0,
'constraints' => [
Expand Down

0 comments on commit 71fc0fe

Please sign in to comment.