legacy-knowledge-base
公開されました Jun. 30, 2025

カスタムモジュールのトレースが再デプロイ後に印刷されなくなる

written-by

Ricardo Couso

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • カスタムモジュールは最初にデプロイされたときはトレースを表示しますが、再デプロイされたときは表示しません。
  • Liferayを再起動すると、再び動作するようになりました。

環境

  • 四半期リリース 2023.Q3、2023.Q4、2024.Q1
  • Liferay DXP 7.4

解像度

  • これは、設定ファイルmodule-log4j.xmlが<logger>の中で、属性として追加するのではなく、<level>という要素を使用している場合に起こる可能性があります。
  • だから、その代わりに
    <Loggers>
    <logger name="testlog4j2redeploy.portlet.TestLog4J2RedeployPortlet" additivity="false">
    <level value="info"/>
    <appender-ref ref="TestLog4J2RedeployPortletLogFile" />
    </logger>
    </Loggers>
    使用
    <Loggers>
    <logger level="info" name="testlog4j2redeploy.portlet.TestLog4J2RedeployPortlet" additivity="false">
    <appender-ref ref="TestLog4J2RedeployPortletLogFile" />
    </logger>
    </Loggers>
did-this-article-resolve-your-issue

legacy-knowledge-base