}
// See 6316018. ClassName and MethodName information should be
// included for FINER and FINEST log levels.
if (LOG_SOURCE_IN_KEY_VALUE ||
(level.intValue() <= Level.FINE.intValue())) {
String sourceClassName = record.getSourceClassName();
// sourceClassName = (sourceClassName == null) ? "" : sourceClassName;
if (sourceClassName != null && !sourceClassName.isEmpty()) {
recordBuffer.append(CLASS_NAME).append(NV_SEPARATOR);
logEvent.getSupplementalAttributes().put(CLASS_NAME, sourceClassName);