{"id":5059,"date":"2024-02-13T17:52:08","date_gmt":"2024-02-13T15:52:08","guid":{"rendered":"https:\/\/www.h-hennes.fr\/blog\/?p=5059"},"modified":"2024-02-13T17:52:09","modified_gmt":"2024-02-13T15:52:09","slug":"magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement","status":"publish","type":"post","link":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/","title":{"rendered":"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement"},"content":{"rendered":"\n<p>Note rapide sur comment r\u00e9duire au silence les logs du module Magento_Backend qui remplis le fichier system.log\u00a0 avec des centaines d&rsquo;entr\u00e9es inutiles du type<\/p>\n<p>[2024-02-10T17:13:48.877379+00:00] main.INFO: Add of item with id Magento_Sales::sales was processed [] []<br \/>[2024-02-10T17:13:48.878055+00:00] main.INFO: Add of item with id Magento_Sales::sales_operation was processed [] []<\/p>\n<p>Pareil pour moi qui fait essentiellement du d\u00e9veloppement back office pour tous les logs du type <br \/><br \/>[2024-02-13T10:54:24.978175+00:00] report.INFO: Broken reference: the &lsquo;catalog.leftnav&rsquo; element cannot be added as child to &lsquo;sidebar.main&rsquo;, because the latter doesn&rsquo;t exist [] []<\/p>\n<p>Cela\u00a0 noie les informations int\u00e9ressantes d&rsquo;autant que c&rsquo;est une information qui n&rsquo;est pas tr\u00e8s utile.<br \/><br \/>Pour masquer \u00e7a la m\u00e9thode la plus simple est de faire un fichier patch, avec le contenu suivant\u00a0 :<br \/>Dans un fichier qui s&rsquo;appelerais par exemple : <em>LOCAL-mute-useless-logs.patch<\/em><\/p>\n\n\n\n<pre>\ndiff --git a\/vendor\/magento\/framework\/View\/Layout\/Data\/Structure.php b\/vendor\/magento\/framework\/View\/Layout\/Data\/Structure.php\n--- a\/vendor\/magento\/framework\/View\/Layout\/Data\/Structure.php\n+++ b\/vendor\/magento\/framework\/View\/Layout\/Data\/Structure.php\n@@ -122,10 +122,10 @@\n                 $siblingParentName = $this->getParentId($sibling);\n                 if ($parentName !== $siblingParentName) {\n                     if ($this->state->getMode() === State::MODE_DEVELOPER) {\n-                        $this->logger->info(\n+                        \/*$this->logger->info(\n                             \"Broken reference: the '{$childName}' tries to reorder itself towards '{$sibling}', but \" .\n                             \"their parents are different: '{$parentName}' and '{$siblingParentName}' respectively.\"\n-                        );\n+                        );*\/\n                     }\n                     return;\n                 }\ndiff --git a\/vendor\/magento\/framework\/View\/Layout\/ScheduledStructure\/Helper.php b\/vendor\/magento\/framework\/View\/Layout\/ScheduledStructure\/Helper.php\n--- a\/vendor\/magento\/framework\/View\/Layout\/ScheduledStructure\/Helper.php\n+++ b\/vendor\/magento\/framework\/View\/Layout\/ScheduledStructure\/Helper.php\n@@ -197,10 +197,10 @@\n                 $scheduledStructure->setElementToBrokenParentList($key);\n\n                 if ($this->state->getMode() === State::MODE_DEVELOPER) {\n-                    $this->logger->info(\n+                    \/*$this->logger->info(\n                         \"Broken reference: the '{$name}' element cannot be added as child to '{$parentName}', \" .\n                         'because the latter doesn\\'t exist'\n-                    );\n+                    );*\/\n                 }\n             }\n         }\ndiff --git a\/vendor\/magento\/module-backend\/Model\/Menu.php b\/vendor\/magento\/module-backend\/Model\/Menu.php\n--- a\/vendor\/magento\/module-backend\/Model\/Menu.php\n+++ b\/vendor\/magento\/module-backend\/Model\/Menu.php\n@@ -86,9 +86,9 @@\n             $index = (int) $index;\n             if (!isset($this[$index])) {\n                 $this->offsetSet($index, $item);\n-                $this->_logger->info(\n+                \/*$this->_logger->info(\n                     sprintf('Add of item with id %s was processed', $item->getId())\n-                );\n+                );*\/\n             } else {\n                 $this->add($item, $parentId, $index + 1);\n             }\ndiff --git a\/vendor\/magento\/module-backend\/Model\/Menu.php b\/vendor\/magento\/module-backend\/Model\/Menu.php\n--- a\/vendor\/magento\/module-backend\/Model\/Menu.php\n+++ b\/vendor\/magento\/module-backend\/Model\/Menu.php\t(date 1679414562983)\n@@ -151,9 +151,9 @@\n             if ($item->getId() == $itemId) {\n                 unset($this[$key]);\n                 $result = true;\n-                $this->_logger->info(\n+                \/*$this->_logger->info(\n                     sprintf('Remove on item with id %s was processed', $item->getId())\n-                );\n+                );*\/\n                 break;\n             }\n\n\n<\/pre>\n\n\n\n<p>Ensuite plus qu&rsquo;\u00e0 l&rsquo;appliquer via la ligne de commande suivante :<\/p>\n\n\n\n<pre lang=\"bash\">\npatch -p1  < LOCAL-mute-useless-logs.patch\n<\/pre>\n\n\n\n<p>Pour ceux qui travaillent avec magento-cloud il est \u00e9galement possible de d\u00e9poser le fichier dans le dossier m2-hotfixes<br \/>Et de l'ex\u00e9cuter via la commande\u00a0 .\/vendor\/bin\/ece-patches apply<\/p>\n<p>Une fois ce nettoyage appliqu\u00e9 fini les kms de logs inutiles :)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Note rapide sur comment r\u00e9duire au silence les logs du module Magento_Backend qui remplis le fichier system.log\u00a0 avec des centaines d&rsquo;entr\u00e9es inutiles du type [2024-02-10T17:13:48.877379+00:00] main.INFO: Add of item with id Magento_Sales::sales was processed [] [][2024-02-10T17:13:48.878055+00:00] main.INFO: Add of item with id Magento_Sales::sales_operation was processed [] [] Pareil pour moi qui fait essentiellement du d\u00e9veloppement [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[246],"tags":[603,482],"class_list":["post-5059","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-logs","tag-magento-2"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"herve\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#article\",\"name\":\"Magento 2 : Mute logs Add of item with id \\u2026 and other useless in developement | Herv\\u00e9 Hennes\",\"headline\":\"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement\",\"author\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/author\\\/herve\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/#organization\"},\"datePublished\":\"2024-02-13T17:52:08+02:00\",\"dateModified\":\"2024-02-13T17:52:09+02:00\",\"inLanguage\":\"fr-FR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#webpage\"},\"articleSection\":\"Magento, logs, magento 2\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/category\\\/magento-2\\\/#listItem\",\"name\":\"Magento\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/category\\\/magento-2\\\/#listItem\",\"position\":2,\"name\":\"Magento\",\"item\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/category\\\/magento-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#listItem\",\"name\":\"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#listItem\",\"position\":3,\"name\":\"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/category\\\/magento-2\\\/#listItem\",\"name\":\"Magento\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/#organization\",\"name\":\"Herv\\u00e9 Hennes\",\"description\":\"D\\u00e9veloppeur e-commerce\",\"url\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/author\\\/herve\\\/#author\",\"url\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/author\\\/herve\\\/\",\"name\":\"herve\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/248532c833c69e304668cc20fd20ec6ddc1808306f57d5d14e632059f50347a4?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"herve\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#webpage\",\"url\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/\",\"name\":\"Magento 2 : Mute logs Add of item with id \\u2026 and other useless in developement | Herv\\u00e9 Hennes\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/2024\\\/02\\\/13\\\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/author\\\/herve\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/author\\\/herve\\\/#author\"},\"datePublished\":\"2024-02-13T17:52:08+02:00\",\"dateModified\":\"2024-02-13T17:52:09+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/\",\"name\":\"Herv\\u00e9 Hennes\",\"description\":\"D\\u00e9veloppeur e-commerce\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.h-hennes.fr\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Magento 2 : Mute logs Add of item with id \u2026 and other useless in developement | Herv\u00e9 Hennes","description":"","canonical_url":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#article","name":"Magento 2 : Mute logs Add of item with id \u2026 and other useless in developement | Herv\u00e9 Hennes","headline":"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement","author":{"@id":"https:\/\/www.h-hennes.fr\/blog\/author\/herve\/#author"},"publisher":{"@id":"https:\/\/www.h-hennes.fr\/blog\/#organization"},"datePublished":"2024-02-13T17:52:08+02:00","dateModified":"2024-02-13T17:52:09+02:00","inLanguage":"fr-FR","mainEntityOfPage":{"@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#webpage"},"isPartOf":{"@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#webpage"},"articleSection":"Magento, logs, magento 2"},{"@type":"BreadcrumbList","@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.h-hennes.fr\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog\/category\/magento-2\/#listItem","name":"Magento"}},{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog\/category\/magento-2\/#listItem","position":2,"name":"Magento","item":"https:\/\/www.h-hennes.fr\/blog\/category\/magento-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#listItem","name":"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#listItem","position":3,"name":"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement","previousItem":{"@type":"ListItem","@id":"https:\/\/www.h-hennes.fr\/blog\/category\/magento-2\/#listItem","name":"Magento"}}]},{"@type":"Organization","@id":"https:\/\/www.h-hennes.fr\/blog\/#organization","name":"Herv\u00e9 Hennes","description":"D\u00e9veloppeur e-commerce","url":"https:\/\/www.h-hennes.fr\/blog\/"},{"@type":"Person","@id":"https:\/\/www.h-hennes.fr\/blog\/author\/herve\/#author","url":"https:\/\/www.h-hennes.fr\/blog\/author\/herve\/","name":"herve","image":{"@type":"ImageObject","@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/248532c833c69e304668cc20fd20ec6ddc1808306f57d5d14e632059f50347a4?s=96&d=mm&r=g","width":96,"height":96,"caption":"herve"}},{"@type":"WebPage","@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#webpage","url":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/","name":"Magento 2 : Mute logs Add of item with id \u2026 and other useless in developement | Herv\u00e9 Hennes","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/www.h-hennes.fr\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/#breadcrumblist"},"author":{"@id":"https:\/\/www.h-hennes.fr\/blog\/author\/herve\/#author"},"creator":{"@id":"https:\/\/www.h-hennes.fr\/blog\/author\/herve\/#author"},"datePublished":"2024-02-13T17:52:08+02:00","dateModified":"2024-02-13T17:52:09+02:00"},{"@type":"WebSite","@id":"https:\/\/www.h-hennes.fr\/blog\/#website","url":"https:\/\/www.h-hennes.fr\/blog\/","name":"Herv\u00e9 Hennes","description":"D\u00e9veloppeur e-commerce","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/www.h-hennes.fr\/blog\/#organization"}}]}},"aioseo_meta_data":{"post_id":"5059","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-02-10 17:19:03","updated":"2024-02-13 15:52:09","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.h-hennes.fr\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.h-hennes.fr\/blog\/category\/magento-2\/\" title=\"Magento\">Magento<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMagento 2 : Mute logs Add of item with id \u2026 and other useless in developement\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.h-hennes.fr\/blog"},{"label":"Magento","link":"https:\/\/www.h-hennes.fr\/blog\/category\/magento-2\/"},{"label":"Magento 2 : Mute logs Add of item with id &#8230; and other useless in developement","link":"https:\/\/www.h-hennes.fr\/blog\/2024\/02\/13\/magento-2-mute-logs-add-of-item-with-id-and-other-useless-in-developement\/"}],"_links":{"self":[{"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/posts\/5059","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/comments?post=5059"}],"version-history":[{"count":2,"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/posts\/5059\/revisions"}],"predecessor-version":[{"id":5086,"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/posts\/5059\/revisions\/5086"}],"wp:attachment":[{"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/media?parent=5059"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/categories?post=5059"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.h-hennes.fr\/blog\/wp-json\/wp\/v2\/tags?post=5059"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}