Skip to content

Commit

Permalink
Apply spotless formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Montagon authored and github-actions[bot] committed Sep 4, 2024
1 parent 22bc441 commit 14d4973
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ class InMemoryCounterMetric(val name: String, val logger: KLogger) : CounterMetr

override fun increment(n: Long, attributes: Map<String, String>) {
count.addAndGet(n)
logger.info { "Counter $name incremented to ${count.get()} with those attributes: ${attributes.entries.joinToString( ",")}" }
logger.info {
"Counter $name incremented to ${count.get()} with those attributes: ${attributes.entries.joinToString( ",")}"
}
}
}

0 comments on commit 14d4973

Please sign in to comment.