FIX: more web view logs

Change-Id: Ia4b2821188c3053be297b0fe0aa19fb8d939a816
(cherry picked from commit 4e76cfc6529038252a4afd8d53cf93f817d46b01)
This commit is contained in:
chunmao.guo 2022-11-30 09:20:04 +08:00 committed by Lane.Wei
parent a9f3f195e1
commit ba8015e455
2 changed files with 11 additions and 3 deletions

View file

@ -102,7 +102,7 @@ wxWebView* WebView::CreateWebView(wxWindow * parent, wxString const & url)
url2.Replace("\\", "/");
#endif
if (!url2.empty()) { url2 = wxURI(url2).BuildURI(); }
BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << url2.ToUTF8();
BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": " << url2.ToUTF8();
auto webView = wxWebView::New();
if (webView) {