aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-03 14:00:04 -0700
committerAllan Wang <me@allanwang.ca>2017-06-03 14:00:04 -0700
commit1ae19368bc6819fbb1f7a6337a5003dad44f7556 (patch)
treedeba69564ff6fb492413540b41da0def0d189852 /app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
parent35185958b077880465696d686bd797895cd3ebd4 (diff)
downloadfrost-1ae19368bc6819fbb1f7a6337a5003dad44f7556.tar.gz
frost-1ae19368bc6819fbb1f7a6337a5003dad44f7556.tar.bz2
frost-1ae19368bc6819fbb1f7a6337a5003dad44f7556.zip
move activity instance creators to ContextUtils
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
index 4cd90d7b..fe3c92e8 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
@@ -17,7 +17,7 @@ class FrostChromeClient(val progressObservable: Subject<Int>) : WebChromeClient(
override fun onReceivedTitle(view: WebView?, title: String?) {
super.onReceivedTitle(view, title)
- L.d("Title $title")
+ L.v("Title $title")
}
override fun onProgressChanged(view: WebView, newProgress: Int) {