Skip to content
Advertisement

log4j2 double dollar $$ sign meaning in configuration

I am reading the configuration part of Log4j2. http://logging.apache.org/log4j/2.x/manual/configuration.html

JavaScript

What is the meaning of double $$ sign? e.g. $${sd:type}?

Advertisement

Answer

It seems that $ is used as an escape character. As stated in Log4J documentation, Log4j configuration file parser uses Apache Commons Lang’s StrSubstitutor, and this documentation for StrSubstitutor says:

The other possibility is to use the escape character, by default ‘$’. If this character is placed before a variable reference, this reference is ignored and won’t be replaced. For example:

The variable $${${name}} must be used.

I guess they want to set the value to "${sd:type}" so that this variable can be evaluated later at run-time. There is a good example/explanation here: http://logging.apache.org/log4j/2.x/manual/lookups.html#ContextMapLookup

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement