fix: wrap long ktlint-violating log line from previous commit

Line exceeded the 160-char limit and had unwrapped arguments.
This commit is contained in:
2026-07-08 14:01:19 -07:00
parent 7906a20f96
commit fd7adec0cc
@@ -67,7 +67,10 @@ abstract class ChainUpdaterGroupUpdateSystem(
// Explicitly qualified: unqualified LOG_TAG here would resolve against the nearest implicit
// receiver, which is this catch lambda's FlowCollector, not this class - Any.LOG_TAG applies to
// any receiver, so it would silently compile but log the wrong (unhelpful) tag.
Log.e(this@ChainUpdaterGroupUpdateSystem.LOG_TAG, "Failed to start updaters in ${this@ChainUpdaterGroupUpdateSystem::class.java.simpleName} for ${chain.name}", error)
val outerLogTag = this@ChainUpdaterGroupUpdateSystem.LOG_TAG
val outerSelfName = this@ChainUpdaterGroupUpdateSystem::class.java.simpleName
Log.e(outerLogTag, "Failed to start updaters in $outerSelfName for ${chain.name}", error)
}
}
}