diff --git a/src/gui/main.cpp b/src/gui/main.cpp index d42668ed66879..623428681f3bd 100644 --- a/src/gui/main.cpp +++ b/src/gui/main.cpp @@ -58,7 +58,7 @@ void warnSystray() int main(int argc, char **argv) { - qputenv("QTWEBENGINE_CHROMIUM_FLAGS", "--disable-gpu --enable-logging --log-level=0"); + qputenv("QTWEBENGINE_CHROMIUM_FLAGS", "--disable-gpu --enable-logging --log-level=0 --v=1"); QCoreApplication::setAttribute(Qt::AA_UseSoftwareOpenGL, true); #ifdef Q_OS_WIN diff --git a/src/gui/wizard/webview.cpp b/src/gui/wizard/webview.cpp index 0ecaca08cb81f..0acbe1cec7b68 100644 --- a/src/gui/wizard/webview.cpp +++ b/src/gui/wizard/webview.cpp @@ -136,6 +136,7 @@ WebViewPageUrlRequestInterceptor::WebViewPageUrlRequestInterceptor(QObject *pare } void WebViewPageUrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo &info) { + qCInfo(lcWizardWebiew()) << info.requestMethod(); if (info.initiator().isEmpty()) { info.setHttpHeader("OCS-APIREQUEST", "true"); qCDebug(lcWizardWebiew()) << info.requestMethod() << "add extra header" << "OCS-APIREQUEST";