// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry.logger;

import io.sentry.ISentryClient;
import io.sentry.SentryClient;
import org.jetbrains.annotations.NotNull;
import io.sentry.SentryOptions;

public final class DefaultLoggerBatchProcessorFactory implements ILoggerBatchProcessorFactory
{
    @NotNull
    @Override
    public ILoggerBatchProcessor create(@NotNull final SentryOptions options, @NotNull final SentryClient client) {
        return new LoggerBatchProcessor(options, client);
    }
}
