Skip to content

Commit

Permalink
stats.toString fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fwbrasil committed Oct 16, 2023
1 parent b04b64b commit b593776
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kyo-core/shared/src/main/scala/kyo/stats/Stats.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package kyo.stats

import kyo._
import kyo.ios._
import kyo.stats.Attributes

trait Stats {

Expand Down Expand Up @@ -109,6 +108,6 @@ object Stats {
)(v: => T > S): T > (IOs with S) =
Span.init(path.reverse, name, attributes)(v)

override def toString = s"Stats(scope = ${path})"
override def toString = s"Stats(scope = ${path.reverse})"
}
}

0 comments on commit b593776

Please sign in to comment.