Skip to content

Conversation

@magic-cucumber
Copy link
Contributor

  1. make WryWebViewPanel.Companion public and modified 2 properties:
    • make LOG_ENABLED public and we can modifiy it's value.
    • add NATIVE_LOGGER property, and init the native logger in WryWebViewPanel.Companion.init
  2. add a property in WryWebViewPanel:
private val bridgeLogger: (String) -> Unit = { System.err.println(it) }

change the log() method:

    private fun log(message: String) {
        if (LOG_ENABLED) {
            bridgeLogger("[WryWebViewPanel] $message")
        }
    }

@kdroidFilter kdroidFilter merged commit 9b0b2a4 into kdroidFilter:main Jan 17, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants