mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-07-22 20:45:53 +00:00
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:
+4
-1
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user