removes unecessary logs

This commit is contained in:
Vitor Pamplona
2024-08-26 14:57:16 -04:00
parent fac803e208
commit efbc3e3e78
@@ -583,15 +583,12 @@ class Account(
val commonRelaysToMe = authorWriteRelays.filter { it in defaultSet } val commonRelaysToMe = authorWriteRelays.filter { it in defaultSet }
if (commonRelaysToMe.isNotEmpty()) { if (commonRelaysToMe.isNotEmpty()) {
println("Assemble NIP65 Refined: $author ${commonRelaysToMe.joinToString(", ") { it }}")
event.pubKey to commonRelaysToMe event.pubKey to commonRelaysToMe
} else { } else {
println("Assemble NIP65 Default: $author ${defaultSet.size}")
event.pubKey to defaultRelayList event.pubKey to defaultRelayList
} }
} else { } else {
if (author != null) { if (author != null) {
println("Assemble NIP65 Default: $author ${defaultSet.size}")
author to defaultRelayList author to defaultRelayList
} else { } else {
Log.e("Account", "This author should NEVER be null. Note: ${it.idHex}") Log.e("Account", "This author should NEVER be null. Note: ${it.idHex}")