{"id":26853,"date":"2020-02-23T16:22:31","date_gmt":"2020-02-23T16:22:31","guid":{"rendered":"https:\/\/www.testingdocs.com\/questions\/?p=26853"},"modified":"2025-05-17T07:05:57","modified_gmt":"2025-05-17T07:05:57","slug":"how-to-fix-log4jwarn-no-appenders-could-be-found-for-logger","status":"publish","type":"post","link":"https:\/\/www.testingdocs.com\/questions\/how-to-fix-log4jwarn-no-appenders-could-be-found-for-logger\/","title":{"rendered":"How to fix: log4j:WARN No appenders could be found for logger"},"content":{"rendered":"<h1 data-start=\"0\" data-end=\"359\">How to fix: log4j:WARN No appenders could be found for logger<\/h1>\n<p data-start=\"0\" data-end=\"359\">The warning message <code class=\"\" data-line=\"\">log4j:WARN No appenders could be found for logger (LoggerExample)<\/code> indicates that Log4j is unable to find any appenders configured for the <code class=\"\" data-line=\"\">LoggerExample<\/code> logger. This issue can occur for a variety of reasons, but it typically means that either the <code class=\"\" data-line=\"\">log4j.xml<\/code> configuration file is missing, not loaded correctly, or not properly defined.<\/p>\n<h2 data-start=\"0\" data-end=\"359\">Fix<\/h2>\n<p data-start=\"361\" data-end=\"390\">Here\u2019s how to fix this issue:<\/p>\n<h3 data-start=\"392\" data-end=\"456\">1. <strong data-start=\"399\" data-end=\"456\">Ensure <code class=\"\" data-line=\"\">log4j.xml<\/code> is placed in the correct location:<\/strong><\/h3>\n<ul data-start=\"460\" data-end=\"810\">\n<li data-start=\"460\" data-end=\"685\">Make sure that the <code class=\"\" data-line=\"\">log4j.xml<\/code> file is placed in the <strong data-start=\"515\" data-end=\"529\">class path<\/strong> of your project. This means it should be in the <code class=\"\" data-line=\"\">src\/main\/resources<\/code> directory (for Maven projects), or directly in the <code class=\"\" data-line=\"\">src<\/code> directory (for other setups).<\/li>\n<li data-start=\"689\" data-end=\"810\">If using an IDE, ensure that the <code class=\"\" data-line=\"\">log4j.xml<\/code> file is marked as a <strong data-start=\"756\" data-end=\"773\">resource file<\/strong> and is included in the build output.<\/li>\n<\/ul>\n<h3 data-start=\"812\" data-end=\"866\">2. <strong data-start=\"819\" data-end=\"866\">Check the <code class=\"\" data-line=\"\">log4j.xml<\/code> file for correctness:<\/strong><\/h3>\n<p data-start=\"870\" data-end=\"1047\">Ensure that you have defined an appender in your <code class=\"\" data-line=\"\">log4j.xml<\/code> file and that the logger is configured properly. Below is a sample of how to define a root logger and custom logger:<\/p>\n<div class=\"contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-meta&quot;&gt;&lt;?xml version=&lt;span class=&quot;hljs-string&quot;&gt;&quot;1.0&quot;&lt;\/span&gt; encoding=&lt;span class=&quot;hljs-string&quot;&gt;&quot;UTF-8&quot;&lt;\/span&gt;?&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;log4j:configuration&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;xmlns:log4j&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;http:\/\/jakarta.apache.org\/log4j\/&quot;&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-comment&quot;&gt;&lt;!-- Console Appender --&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;appender&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;name&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;Console&quot;&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;class&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;org.apache.log4j.ConsoleAppender&quot;&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;layout&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;class&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;org.apache.log4j.PatternLayout&quot;&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">      &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;param&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;name&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;ConversionPattern&quot;&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;value&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;%d{ISO8601} [%t] %-5p %c - %m%n&quot;&lt;\/span&gt;\/&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;layout&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;appender&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-comment&quot;&gt;&lt;!-- Root Logger --&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;root&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;level&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;value&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;debug&quot;&lt;\/span&gt;\/&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;appender-ref&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;ref&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;Console&quot;&lt;\/span&gt;\/&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;root&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-comment&quot;&gt;&lt;!-- Custom Logger for LoggerExample --&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;logger&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;name&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;LoggerExample&quot;&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;level&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;value&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;info&quot;&lt;\/span&gt;\/&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;appender-ref&lt;\/span&gt; &lt;span class=&quot;hljs-attr&quot;&gt;ref&lt;\/span&gt;=&lt;span class=&quot;hljs-string&quot;&gt;&quot;Console&quot;&lt;\/span&gt;\/&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;logger&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;log4j:configuration&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<\/div>\n<ul data-start=\"1786\" data-end=\"1975\">\n<li data-start=\"1786\" data-end=\"1863\">The root logger is configured to log <code class=\"\" data-line=\"\">debug<\/code> level messages to the console.<\/li>\n<li data-start=\"1867\" data-end=\"1975\">A custom logger for <code class=\"\" data-line=\"\">LoggerExample<\/code> is created with <code class=\"\" data-line=\"\">info<\/code> level, and it also outputs logs to the console.<\/li>\n<\/ul>\n<h3 data-start=\"1977\" data-end=\"2021\">3. <strong data-start=\"1984\" data-end=\"2021\">Ensure Log4j library is included:<\/strong><\/h3>\n<ul data-start=\"2025\" data-end=\"2143\">\n<li data-start=\"2025\" data-end=\"2143\">If you\u2019re using <strong data-start=\"2043\" data-end=\"2052\">Maven<\/strong> or <strong data-start=\"2056\" data-end=\"2066\">Gradle<\/strong>, make sure you have included the correct Log4j dependencies in your project.<\/li>\n<\/ul>\n<p data-start=\"2148\" data-end=\"2162\"><strong data-start=\"2148\" data-end=\"2162\">For Maven Projects<\/strong><\/p>\n<div class=\"contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950\">\n<div class=\"sticky top-9 md:top-[5.75rem]\">\n<div class=\"absolute bottom-0 right-2 flex h-9 items-center\">\n<div class=\"flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary\"><\/div>\n<\/div>\n<\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;dependency&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;groupId&lt;\/span&gt;&gt;&lt;\/span&gt;log4j&lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;groupId&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;artifactId&lt;\/span&gt;&gt;&lt;\/span&gt;log4j&lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;artifactId&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">  &lt;span class=&quot;hljs-tag&quot;&gt;&lt;&lt;span class=&quot;hljs-name&quot;&gt;version&lt;\/span&gt;&gt;&lt;\/span&gt;1.2.17&lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;version&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-tag&quot;&gt;&lt;\/&lt;span class=&quot;hljs-name&quot;&gt;dependency&lt;\/span&gt;&gt;&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"2314\" data-end=\"2329\"><strong data-start=\"2314\" data-end=\"2329\">For Gradle:<\/strong><\/p>\n<div class=\"contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950\">\n<div class=\"sticky top-9 md:top-[5.75rem]\">\n<div class=\"flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary\"><\/div>\n<\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">implementation &#039;log4j:log4j:1.2.17&#039;<br \/>\n<\/code><\/div>\n<\/div>\n<h3 data-start=\"2390\" data-end=\"2447\">4. <strong data-start=\"2397\" data-end=\"2447\">Check the Java Class for Logger Configuration:<\/strong><\/h3>\n<p data-start=\"2451\" data-end=\"2597\">Ensure that your Java class (e.g., <code class=\"\" data-line=\"\">LoggerExample<\/code>) is using the correct logger configuration.<\/p>\n<p data-start=\"2451\" data-end=\"2597\">Here\u2019s an example of how to use Log4j in your code:<\/p>\n<div class=\"contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950\">\n<div class=\"sticky top-9 md:top-[5.75rem]\">\n<div class=\"absolute bottom-0 right-2 flex h-9 items-center\">\n<div class=\"flex items-center rounded bg-token-sidebar-surface-primary px-2 font-sans text-xs text-token-text-secondary dark:bg-token-main-surface-secondary\"><\/div>\n<\/div>\n<\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-keyword&quot;&gt;import&lt;\/span&gt; org.apache.log4j.Logger;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">&lt;span class=&quot;hljs-keyword&quot;&gt;public&lt;\/span&gt; &lt;span class=&quot;hljs-keyword&quot;&gt;class&lt;\/span&gt; &lt;span class=&quot;hljs-title class_&quot;&gt;LoggerExample&lt;\/span&gt; {<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-comment&quot;&gt;\/\/ Create a logger for this class&lt;\/span&gt;<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-keyword&quot;&gt;static&lt;\/span&gt; &lt;span class=&quot;hljs-keyword&quot;&gt;final&lt;\/span&gt; &lt;span class=&quot;hljs-type&quot;&gt;Logger&lt;\/span&gt; &lt;span class=&quot;hljs-variable&quot;&gt;logger&lt;\/span&gt; &lt;span class=&quot;hljs-operator&quot;&gt;=&lt;\/span&gt; Logger.getLogger(LoggerExample.class);<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    &lt;span class=&quot;hljs-keyword&quot;&gt;public&lt;\/span&gt; &lt;span class=&quot;hljs-keyword&quot;&gt;static&lt;\/span&gt; &lt;span class=&quot;hljs-keyword&quot;&gt;void&lt;\/span&gt; &lt;span class=&quot;hljs-title function_&quot;&gt;main&lt;\/span&gt;&lt;span class=&quot;hljs-params&quot;&gt;(String[] args)&lt;\/span&gt; {<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">        &lt;span class=&quot;hljs-comment&quot;&gt;\/\/ Log messages at different levels&lt;\/span&gt;<br \/>\nlogger.info(&lt;span class=&quot;hljs-string&quot;&gt;&quot;This is an info message&quot;&lt;\/span&gt;);<br \/>\nlogger.debug(&lt;span class=&quot;hljs-string&quot;&gt;&quot;This is a debug message&quot;&lt;\/span&gt;);<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">    }<br \/>\n<\/code><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"\" data-line=\"\">}<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"3018\" data-end=\"3127\"><strong data-start=\"3018\" data-end=\"3032\">Important:<\/strong> The logger name (<code class=\"\" data-line=\"\">LoggerExample.class<\/code>) should match the logger you configured in <code class=\"\" data-line=\"\">log4j.xml<\/code>.<\/p>\n<h3 data-start=\"3129\" data-end=\"3156\">5. <strong data-start=\"3136\" data-end=\"3156\">Check for Typos:<\/strong><\/h3>\n<ul data-start=\"3160\" data-end=\"3379\">\n<li data-start=\"3160\" data-end=\"3379\">Make sure there are no typos in the <code class=\"\" data-line=\"\">log4j.xml<\/code> file, specifically in the logger names and appender references. The logger name in the Java class (e.g., <code class=\"\" data-line=\"\">LoggerExample<\/code>) must match the logger configuration in the XML.<\/li>\n<\/ul>\n<p data-start=\"3381\" data-end=\"3626\" data-is-last-node=\"\" data-is-only-node=\"\">After making these changes, restart your application. The warning should be resolved, and Log4j will start logging properly. If you still encounter issues, check the console output for any additional error messages that may provide more detail<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to fix: log4j:WARN No appenders could be found for logger The warning message log4j:WARN No appenders could be found for logger (LoggerExample) indicates that Log4j is unable to find any appenders configured for the LoggerExample logger. This issue can occur for a variety of reasons, but it typically means that either the log4j.xml configuration [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[40],"tags":[],"class_list":["post-26853","post","type-post","status-publish","format-standard","hentry","category-java","has-post-title","has-post-date","has-post-category","has-post-tag","has-post-comment","has-post-author",""],"_links":{"self":[{"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/posts\/26853","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/comments?post=26853"}],"version-history":[{"count":4,"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/posts\/26853\/revisions"}],"predecessor-version":[{"id":27410,"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/posts\/26853\/revisions\/27410"}],"wp:attachment":[{"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/media?parent=26853"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/categories?post=26853"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.testingdocs.com\/questions\/wp-json\/wp\/v2\/tags?post=26853"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}