Release Notes / Version 11.2204
Table Of ContentsThe logging setup has changed to implement a more standardized setup. This includes:
the removal of any thirdparty logback appenders to push logs to a log aggregation like elasticsearch.
the removal of the Spring-Boot
elk
profile to activate elastic log aggregationthe removal of the
com.coremedia.blueprint:logging-config
maven modulethe removal of any
logback-spring.xml
in favor of Spring-Boot standard setupthe removal of the Studio Console logfile endpoint
a simpler default logging pattern
Instead of using this approach please use one of the many log shippers available to send logfiles to an elastic stack.
If you need to customize your logging you can readd
logback-spring.xml
files to the
*-app/src/main/resources
folder and follow the standard customization steps described in the Spring Boot documentation.
The endpoint was intended to be used similar to the logfile endpoint of the standard Spring Boot actuators. To view the
studio-console
logger, please use standard log queries in your log aggregation stack of your choice to separate the
studio-console
logger from the studio-server logs.
For an easier integration with log shippers, the logging pattern has been changed:
any coloring has been removed for console and file logging except for
local
profiles, when the application is started using the IDE or thespring-boot-maven-plugin
.the timestamp has been removed for standard console logging. The container logging always contains the timestamp and the shippers parse this timestamp anyway.
the pattern has been reordered so that the message is the last entry. This simplifies the handling of multiline strings.
The new logging pattern for the file logger will be:
%d{yyyy-MM-dd HH:mm:ss} %-7([%level]) \\(%thread\\) %logger [%X{tenant}] - %message%n
The new logging pattern for the console logger will be:
%-7([%level]) \\(%thread\\) %logger [%X{tenant}] - %message%n
If you want to keep the old pattern, set the following property respectively environment variable
logging.pattern.file
,
LOGGING_PATTERN_FILE
to
%d{yyyy-MM-dd HH:mm:ss} %-7([%level]) %logger [%X{tenant}] - %message \\(%thread\\)%n
For the console logger set
logging.pattern.console
or
LOGGING_PATTERN_CONSOLE
to
%clr(%d{yyyy-MM-dd HH:mm:ss} -){faint} %clr(%7([%level])) %clr(%logger){cyan} [%X{tenant}] %clr(-){faint} %message \\(%thread\\)%n
(CMS-19224)