Using log4j2, how to log key value pairs

后端 未结 1 2019
长情又很酷
长情又很酷 2021-02-10 20:00

I need to create logs with key value pairs as below. Is there any support in PatternLayout to do this for the static fields in a thread like log_level, class_name, event_id etc

1条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-10 20:13

    Yes, this is possible.

    You can either use a MapMessage, which is supported by the map (or K) conversion pattern of PatternLayout: an example layout pattern would be "%-5p [%t]: %m %map%n".

    Logging a MapMessage looks like this: Map myMap = getMyMap(); Logger.debug(new MapMessage(myMap));

    Another way to do this is to use the ThreadContext map. This is supported by the mdc (or X) conversion pattern of PatternLayout. Example pattern: "%-5p [%t]: %m %mdc%n". A common usage is putting a user ID in the Thread Context Map when a user logs in, and having this user ID shown in all log messages emitted by that thread until the user logs out.

    Instead of logging the whole map you can also log specific keys only by specifying the key in the layout pattern: e.g. "%-5p [%t]: %m %mdc{userID}%n".

    0 讨论(0)
提交回复
热议问题