Skip to content

Commit 71fc0fe

Browse files
Merge pull request #4 from twoldanski/bugfix/logs
[BUGFIX] change lvl of logs from error to debug (avoid clutter of logs)
2 parents 7dbeb61 + 84a6d3d commit 71fc0fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Classes/CacheManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function execute(): void
121121
$this->logger->error('error: ' . curl_error($ch));
122122
} else {
123123
$info = curl_getinfo($ch);
124-
$this->logger->error('info: ', $info);
124+
$this->logger->debug('info: ', $info);
125125
}
126126
curl_multi_remove_handle($multiHandle, $ch);
127127
curl_close($ch);

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Cache Purger',
55
'description' => 'Purge cached URLs within Varnish instances',
66
'category' => 'misc',
7-
'version' => '1.0.3',
7+
'version' => '1.0.4',
88
'state' => 'stable',
99
'clearCacheOnLoad' => 0,
1010
'constraints' => [

0 commit comments

Comments
 (0)