Reputation: 2648
Does anyone know what's the problem?
714 GET /data/www/aem6-dispatcher/cache/content/sites/my_project/404.html HTTP/1.1] com.day.cq.wcm.core.impl.designer.DesignerImpl No design at /etc/designs/my_project. Using default.
272 GET /favicon.ico HTTP/1.1] com.day.cq.wcm.core.impl.designer.DesignerImpl No design at /etc/designs/my_project. Using default.
168 Cannot find Microsoft Cloud Config at /etc/cloudservices/msft-translation/system_default
46 GET /resources/images/img2.jpg HTTP/1.1] com.day.cq.wcm.core.impl.designer.DesignerImpl No design at /etc/designs/my_project. Using default.
40 GET /resources/images/img3.jpg HTTP/1.1] com.day.cq.wcm.core.impl.designer.DesignerImpl No design at /etc/designs/my_project. Using default.
.....
And many other similar logs. But favicon and other image is shown
.content.xml from /etc/designs/my_project
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
jcr:primaryType="sling:Folder">
<clientlib/>
<jcr:content
cq:doctype="html_5"
jcr:primaryType="nt:unstructured"
jcr:title="My Design"
sling:resourceType="wcm/core/components/designer"/>
<favicon.ico/>
</jcr:root>
Upvotes: 2
Views: 2782
Reputation: 1856
Every project has design associated with content. It contains CSS, JS, images etc which are used in components, templates. Also when you edit the page in design mode to choose allowed components, that information is also stored under design.
It seems the project you have created is not having design associated and hence the warning, project using default path for storing design information.
You can refer official docs for more information.
Upvotes: 1