com.vwo.event.NoopEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vwo-java-sdk Show documentation
Show all versions of vwo-java-sdk Show documentation
Java library to initiate VWo instance for server side a/b testing
package com.vwo.event;
import com.vwo.logger.LoggerManager;
public class NoopEventHandler implements EventHandler {
private static final LoggerManager LOGGER = LoggerManager.getLogger(NoopEventHandler.class);
@Override
public void dispatchEvent(DispatchEvent event) throws Exception {
LOGGER.debug("event.NoopEventHandler Dispatch event.Event Called with URL {} and Params {}", event.getHost().concat(event.getPath()), event.getRequestParams());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy