diff options
author | Allan Wang <me@allanwang.ca> | 2020-11-07 21:07:05 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2020-11-07 21:07:05 -0800 |
commit | be1132c6df6ca1a664bc557dd02094b36195cc76 (patch) | |
tree | 6de6bbd1da40fad926a15c12958e5ec808ec2367 /app | |
parent | 0a37a58261f9187f09dc727f11bf4f4512c48592 (diff) | |
download | frost-be1132c6df6ca1a664bc557dd02094b36195cc76.tar.gz frost-be1132c6df6ca1a664bc557dd02094b36195cc76.tar.bz2 frost-be1132c6df6ca1a664bc557dd02094b36195cc76.zip |
Use verbose logging
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/web/FrostJSI.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostJSI.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostJSI.kt index d4a07ea2..40a048af 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostJSI.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostJSI.kt @@ -166,7 +166,7 @@ class FrostJSI(val web: FrostWebView) { @JavascriptInterface fun setScrolling(scrolling: Boolean) { - L.i { "Scrolling $scrolling" } + L.v { "Scrolling $scrolling" } this.isScrolling = scrolling } |