We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c50b433 commit e1594f3Copy full SHA for e1594f3
src/Parser/UrlCache.php
@@ -114,7 +114,12 @@ private function updateUrl(string $url): void
114
if ($urlHeader !== false) {
115
$response = $urlHeader[0];
116
$valid = $this->isValidResponse($response);
117
- Mesamatrix::$logger->info("Try URL \"{$url}\": " . ($valid ? "valid" : "invalid") . " (\"{$response}\")");
+ if ($valid) {
118
+ Mesamatrix::$logger->info("URL \"{$url}\" is valid");
119
+ }
120
+ else {
121
+ Mesamatrix::$logger->warning("URL \"{$url}\" is invalid");
122
123
}
124
125
// Register URL's validity.
0 commit comments