This issue is related to:
While the work on #14788 introduce extensive test suites, those tests are creating logger on a fly - however ydoc-server project is native image compiled with class static initializers executed at build time. As such a classical code:
private static final Logger LOG = Logger(Factory).getLogger(...)
is hardwired during compilation. Currently it gets on hold of a wrong logger. This needs to get fixed. When at it fix also the documentation.
This issue is related to:
-pmode only when buildingydoc-servernative image #14878While the work on #14788 introduce extensive test suites, those tests are creating logger on a fly - however
ydoc-serverproject is native image compiled with class static initializers executed at build time. As such a classical code:is hardwired during compilation. Currently it gets on hold of a wrong logger. This needs to get fixed. When at it fix also the documentation.