AEM:'No Design' 消息显示在错误日志中

AEM: 'No Design' message displays in the error logs

有人知道问题出在哪里吗?

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.

.....

以及许多其他类似的日志。但是显示了网站图标和其他图像

.content.xml 来自 /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>

每个项目都有 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 选择允许的组件,该信息也在设计中存储。

您创建的项目似乎没有关联设计,因此出现警告,项目使用默认路径存储设计信息。

您可以参考official docs了解更多信息。