gengliangwang commented on code in PR #45729: URL: https://github.com/apache/spark/pull/45729#discussion_r1540294855
########## common/utils/src/main/scala/org/apache/spark/internal/Logging.scala: ########## @@ -17,17 +17,39 @@ package org.apache.spark.internal +import java.util.Locale + import scala.jdk.CollectionConverters._ -import org.apache.logging.log4j.{Level, LogManager} +import org.apache.logging.log4j.{CloseableThreadContext, Level, LogManager} +import org.apache.logging.log4j.CloseableThreadContext.Instance import org.apache.logging.log4j.core.{Filter, LifeCycle, LogEvent, Logger => Log4jLogger, LoggerContext} import org.apache.logging.log4j.core.appender.ConsoleAppender import org.apache.logging.log4j.core.config.DefaultConfiguration import org.apache.logging.log4j.core.filter.AbstractFilter import org.slf4j.{Logger, LoggerFactory} +import org.apache.spark.SparkException import org.apache.spark.internal.Logging.SparkShellLoggingFilter -import org.apache.spark.util.SparkClassUtils +import org.apache.spark.util.{SparkClassUtils, SparkEnvUtils} + +// Mapped Diagnostic Context (MDC) that will be used in log messages. +// The values of the MDC will be inline in the log message, while the key-value pairs will be +// part of the ThreadContext. +case class MDC(key: LogKey.Value, value: String) Review Comment: And we are putting the class name into the log message. I am trying to avoid a long class name here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org