]> git.mxchange.org Git - friendica.git/commitdiff
Added logging of unsupported meta-tag records
authorRoland Häder <roland@mxchange.org>
Tue, 19 Jul 2022 21:55:27 +0000 (23:55 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 28 Jul 2022 02:10:57 +0000 (04:10 +0200)
src/Util/ParseUrl.php

index 0183d6b14ae5be6785f90eaf5c16af01e6974de9..0a12e628298b9398924d56f37347237958a62a08 100644 (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]);
                        }
                }