Skip to content

Commit

Permalink
Merge pull request #843 from DWvanGeest/patch-1
Browse files Browse the repository at this point in the history
Fix logger name in DatadogSpanReporter.
  • Loading branch information
dpsoft authored Aug 30, 2020
2 parents 19ec532 + 8bec7bf commit e357bac
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 e357bac

Please sign in to comment.