
com.yahoo.container.logging.AccessLog Maven / Gradle / Ivy
// Copyright Yahoo. 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 implementers;
@Inject
public AccessLog(ComponentRegistry 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);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy