From: Roland Häder Date: Tue, 19 Jul 2022 21:55:27 +0000 (+0200) Subject: Added logging of unsupported meta-tag records X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8fb0fa292152c84b077875ac9409eae7d2552c39;p=friendica.git Added logging of unsupported meta-tag records --- diff --git a/src/Util/ParseUrl.php b/src/Util/ParseUrl.php index 0183d6b14a..0a12e62829 100644 --- a/src/Util/ParseUrl.php +++ b/src/Util/ParseUrl.php @@ -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]); } }