Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater/Docking/FloatingWebBrowser.cs 2014/04/15 14:30:48 811 +++ trunk/RomCheater/Docking/FloatingWebBrowser.cs 2014/04/15 14:52:10 812 @@ -9,6 +9,7 @@ using WeifenLuo.WinFormsUI.Docking; using RomCheater.Core; using RomCheater.Logging; +using Enterprise.Logging; namespace RomCheater.Docking { @@ -70,24 +71,24 @@ void Provider_Navigated(object sender, WebBrowserNavigatedEventArgs e) { - logger.Debug.WriteLine("Navigated to Url: {0}", e.Url.ToString()); + gLog.Debug.WriteLine("Navigated to Url: {0}", e.Url.ToString()); txtWebAddress.Text = e.Url.ToString(); } void Provider_Navigating(object sender, WebBrowserNavigatingEventArgs e) { - logger.Debug.WriteLine("Navigating to Url: {0}", e.Url.ToString()); + gLog.Debug.WriteLine("Navigating to Url: {0}", e.Url.ToString()); } void Provider_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { - logger.Debug.WriteLine("Loaded Document at Url: {0}", e.Url.ToString()); + gLog.Debug.WriteLine("Loaded Document at Url: {0}", e.Url.ToString()); } #endregion #region IWebBrowserInterface Members public void Navigate(string urlString) { - logger.Debug.WriteLine("called::Navigate(string urlString)::{0}", urlString); + gLog.Debug.WriteLine("called::Navigate(string urlString)::{0}", urlString); //this.Provider.Navigate(urlString); this.webBrowser.Navigate(urlString); }
ViewVC Help | |
Powered by ViewVC 1.1.22 |