Revert "android: Fix logging method in NetPlayManager"

This reverts commit 4c8033d156.
This commit is contained in:
Zephyron 2025-01-31 16:38:58 +10:00
parent 6c9e3ae5f9
commit f2d3a2aefe
No known key found for this signature in database
GPG key ID: 2177ADED8AC966AF

View file

@ -15,7 +15,6 @@ import androidx.preference.PreferenceManager
import org.citron.citron_emu.CitronApplication
import org.citron.citron_emu.R
import org.citron.citron_emu.dialogs.ChatMessage
import android.util.Log
object NetPlayManager {
external fun netPlayCreateRoom(ipAddress: String, port: Int, username: String, password: String, roomName: String, maxPlayers: Int): Int
@ -187,7 +186,7 @@ object NetPlayManager {
}
fun getBanList(): List<String> {
Log.i("NetPlayManager", "Netplay Ban ${netPlayGetBanList().toList()}")
Log.info("Netplay Ban ${netPlayGetBanList()}.toList()")
return netPlayGetBanList().toList()
}