rgoers commented on code in PR #2419:
URL: https://github.com/apache/logging-log4j2/pull/2419#discussion_r1544606640


##########
log4j-api/src/main/java/org/apache/logging/log4j/ResourceLogger.java:
##########
@@ -0,0 +1,276 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to you under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.logging.log4j;
+
+import java.util.Collections;
+import java.util.Map;
+import java.util.function.Supplier;
+import org.apache.logging.log4j.message.Message;
+import org.apache.logging.log4j.message.ParameterizedMapMessageFactory;
+import org.apache.logging.log4j.spi.AbstractLogger;
+import org.apache.logging.log4j.spi.ExtendedLogger;
+import org.apache.logging.log4j.status.StatusLogger;
+import org.apache.logging.log4j.util.StackLocatorUtil;
+import org.apache.logging.log4j.util.Strings;
+
+/**
+ * Logger for resources. Formats all events using the 
ParameterizedMapMessageFactory along with the provided
+ * Supplier. The Supplier provides resource attributes that should be included 
in all log events generated
+ * from the current resource. Note that since the Supplier is called for every 
LogEvent being generated
+ * the values returned may change as necessary. Care should be taken to make 
the Supplier as efficient as
+ * possible to avoid performance issues.
+ *
+ * Unlike regular Loggers ResourceLoggers CANNOT be declared to be static. A 
ResourceLogger
+ * must be declared as a class member that will be garbage collected along 
with the instance of the resource.
+ */
+public final class ResourceLogger extends AbstractLogger {

Review Comment:
   Yes. Thanks. Done.



-- 
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: notifications-unsubscr...@logging.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to