Skip to content

Commit

Permalink
Less spammy logging
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Oct 25, 2024
1 parent f2c88bb commit facdfe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/java/eu/darken/apl/alerts/core/AlertsRepo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class AlertsRepo @Inject constructor(
)
}
.run {
log(TAG) { "Got ${this.size} hex alerts:\n${this.joinToString("\n")}" }
log(TAG) { "Got ${this.size} hex alerts" }
status.addAll(this)
}
callsignAlerts
Expand All @@ -100,7 +100,7 @@ class AlertsRepo @Inject constructor(
)
}
.run {
log(TAG) { "Got ${this.size} callsign alerts:\n${this.joinToString("\n")}" }
log(TAG) { "Got ${this.size} callsign alerts" }
status.addAll(this)
}
squawkAlerts
Expand All @@ -116,7 +116,7 @@ class AlertsRepo @Inject constructor(
)
}
.run {
log(TAG) { "Got ${this.size} squawk alerts:\n${this.joinToString("\n")}" }
log(TAG) { "Got ${this.size} squawk alerts" }
status.addAll(this)
}
status
Expand Down

0 comments on commit facdfe1

Please sign in to comment.