diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-28 17:57:33 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-28 17:57:33 +0100 |
commit | e76c6954c2f0e8b24b28f8f09570e7d5b55449ce (patch) | |
tree | 24f061dfc330bf987d17a47654e170867327d732 | |
parent | fff807cbc78c9a12a3b6f45ed115f5b7a3d3169b (diff) | |
download | kube-e76c6954c2f0e8b24b28f8f09570e7d5b55449ce.tar.gz kube-e76c6954c2f0e8b24b28f8f09570e7d5b55449ce.zip |
Less noise
-rw-r--r-- | components/package/contents/ui/WebView.qml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/package/contents/ui/WebView.qml b/components/package/contents/ui/WebView.qml index ac5735ba..509c9809 100644 --- a/components/package/contents/ui/WebView.qml +++ b/components/package/contents/ui/WebView.qml | |||
@@ -28,8 +28,11 @@ Item { | |||
28 | id: htmlView | 28 | id: htmlView |
29 | anchors.fill: parent | 29 | anchors.fill: parent |
30 | onLoadingChanged: { | 30 | onLoadingChanged: { |
31 | console.debug("Error is ", loadRequest.errorString); | 31 | // console.debug("Status is ", loadRequest.status); |
32 | console.debug("Status is ", loadRequest.status); | 32 | // console.debug("Url is ", loadRequest.url); |
33 | if (loadRequest.errorCode) { | ||
34 | console.warn("Error is ", loadRequest.errorString); | ||
35 | } | ||
33 | } | 36 | } |
34 | Component.onCompleted: { | 37 | Component.onCompleted: { |
35 | loadHtml(content, "file:///") | 38 | loadHtml(content, "file:///") |