Merge pull request #2680 from davotoula/fix/zap-receipt-log-flood

Downgrade "Zap Request not found" log from error to debug
This commit is contained in:
Vitor Pamplona
2026-05-01 07:44:45 -04:00
committed by GitHub
@@ -1673,7 +1673,7 @@ object LocalCache : ILocalCache, ICacheProvider {
val zapRequest = event.zapRequest?.id?.let { getNoteIfExists(it) }
if (zapRequest == null || zapRequest.event !is LnZapRequestEvent) {
Log.e("ZP") { "Zap Request not found. Unable to process Zap {${event.toJson()}}" }
Log.d("ZP") { "Zap Request not found. Unable to process Zap {${event.toJson()}}" }
return false
}