I am new to Adobe CQ, when i am opening a page from '/content'
GET /content/myapp/uk/en.html HTTP/1.1] com.day.cq.wcm.core.impl.PageImpl Invalid iso code stored in /content/myapp/uk/en: en_uk
is appearing in my logs, how to resolve this ?
I am new to Adobe CQ, when i am opening a page from '/content'
GET /content/myapp/uk/en.html HTTP/1.1] com.day.cq.wcm.core.impl.PageImpl Invalid iso code stored in /content/myapp/uk/en: en_uk
is appearing in my logs, how to resolve this ?
I can reproduce your issue by adding a
jcr:language
property in the/content/geometrixx/en/jcr:content
node as shown in the below image, which produces me the below error.you have to use the correct iso code i.e.
en_GB
as per the standards.and also have a look at the Page, PageImpl
getLanguage()
method for more understandingAfter adding the correct code
en_GB
i can see proper logs without any*WARN*
when i access the page~Hope it helps