aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/logging/AccessLog.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/main/java/com/yahoo/container/logging/AccessLog.java')
-rw-r--r--container-core/src/main/java/com/yahoo/container/logging/AccessLog.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/logging/AccessLog.java b/container-core/src/main/java/com/yahoo/container/logging/AccessLog.java
new file mode 100644
index 00000000000..2d46c53bca7
--- /dev/null
+++ b/container-core/src/main/java/com/yahoo/container/logging/AccessLog.java
@@ -0,0 +1,36 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.container.logging;
+
+
+import com.google.inject.Inject;
+import com.yahoo.component.provider.ComponentRegistry;
+
+/**
+ * Logs to all the configured access logs.
+ *
+ * @author Tony Vaagenes
+ * @author bjorncs
+ */
+public class AccessLog implements RequestLog {
+
+ public static final AccessLog NONE_INSTANCE = new AccessLog(new ComponentRegistry<>());
+
+ private final ComponentRegistry<RequestLogHandler> implementers;
+
+ @Inject
+ public AccessLog(ComponentRegistry<RequestLogHandler> implementers) {
+ this.implementers = implementers;
+ }
+
+ public static AccessLog voidAccessLog() {
+ return NONE_INSTANCE;
+ }
+
+ @Override
+ public void log(RequestLogEntry entry) {
+ for (RequestLogHandler handler: implementers.allComponents()) {
+ handler.log(entry);
+ }
+ }
+
+}