Merge pull request #11783 from Quix0r/logging-unsupported

Added logging of unsupported meta-tag records
This commit is contained in:
Hypolite Petovan 2022-07-27 22:18:52 -04:00 committed by GitHub
commit 8d62fbcd49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -425,6 +425,8 @@ class ParseUrl
case 'news_keywords':
$keywords = explode(',', $meta_tag['content']);
break;
default:
Logger::debug('Unsupported meta-tag found', ['meta-tag' => $meta_tag]);
}
}