polish: retaining the original naming convention.
This commit is contained in:
parent
16d0dd9590
commit
af4af1f2ee
|
|
@ -75,8 +75,8 @@ public final class OtlpJsonLoggingMetricExporter implements MetricExporter {
|
|||
}
|
||||
|
||||
@Override
|
||||
public CompletableResultCode export(Collection<MetricData> metrics) {
|
||||
return delegate.export(metrics);
|
||||
public CompletableResultCode export(Collection<MetricData> logs) {
|
||||
return delegate.export(logs);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -55,8 +55,8 @@ public final class OtlpJsonLoggingSpanExporter implements SpanExporter {
|
|||
}
|
||||
|
||||
@Override
|
||||
public CompletableResultCode export(Collection<SpanData> spans) {
|
||||
return delegate.export(spans);
|
||||
public CompletableResultCode export(Collection<SpanData> logs) {
|
||||
return delegate.export(logs);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue