Skip to content

Commit

Permalink
Fix logger name in DatadogSpanReporter.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvgica authored Aug 29, 2020
1 parent 19ec532 commit 8bec7bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class DatadogSpanReporterFactory extends ModuleFactory {

class DatadogSpanReporter(@volatile private var configuration: Configuration) extends SpanReporter {

private val logger = LoggerFactory.getLogger(classOf[DatadogAPIReporter])
private val logger = LoggerFactory.getLogger(classOf[DatadogSpanReporter])

override def reportSpans(spans: Seq[Span.Finished]): Unit = if (spans.nonEmpty) {
val spanList: List[Seq[JsObject]] = spans
Expand Down

0 comments on commit 8bec7bf

Please sign in to comment.