Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater/RomCheaterConfigDialog.cs 2014/04/15 14:30:48 811 +++ trunk/RomCheater/RomCheaterConfigDialog.cs 2014/04/15 14:52:10 812 @@ -24,6 +24,7 @@ using RomCheater.PluginFramework.Core; using RomCheater.Core; using RomCheater.UserSettingsSupport; +using Enterprise.Logging; namespace RomCheater @@ -61,10 +62,10 @@ } private void RomCheaterConfigDialog_Load(object sender, EventArgs e) { - logger.Info.WriteLine("Loading user settings..."); + gLog.Info.WriteLine("Loading user settings..."); load_loggerflags(); setup_plugin_entries(); - logger.Info.WriteLine("Loaded user settings."); + gLog.Info.WriteLine("Loaded user settings."); } private void setup_plugin_entries() @@ -85,7 +86,7 @@ { if (item == RomCheater.Properties.Settings.Default.LastConfigPlugin) { - logger.VerboseDebug.WriteLine(" loading LastConfigPlugin: {0}", MainSettingsSubscriber.GetValue("LastConfigPlugin")); + gLog.Verbose.Debug.WriteLine(" loading LastConfigPlugin: {0}", MainSettingsSubscriber.GetValue("LastConfigPlugin")); comboConfigPlugins.SelectedIndex = comboConfigPlugins.Items.IndexOf(item); break; } @@ -94,7 +95,7 @@ { if (item == RomCheater.Properties.Settings.Default.LastInputPlugin) { - logger.VerboseDebug.WriteLine(" loading LastInputPlugin: {0}", MainSettingsSubscriber.GetValue("LastInputPlugin")); + gLog.Verbose.Debug.WriteLine(" loading LastInputPlugin: {0}", MainSettingsSubscriber.GetValue("LastInputPlugin")); comboInputPlugins.SelectedIndex = comboInputPlugins.Items.IndexOf(item); break; } @@ -103,7 +104,7 @@ { if (item == RomCheater.Properties.Settings.Default.LastWindowPlugin) { - logger.VerboseDebug.WriteLine(" loading LastWindowPlugin: {0}", MainSettingsSubscriber.GetValue("LastWindowPlugin")); + gLog.Verbose.Debug.WriteLine(" loading LastWindowPlugin: {0}", MainSettingsSubscriber.GetValue("LastWindowPlugin")); comboWindowPlugins.SelectedIndex = comboWindowPlugins.Items.IndexOf(item); break; } @@ -113,7 +114,7 @@ private void load_loggerflags() { - logger.Info.WriteLine(" Loading logger flags..."); + gLog.Info.WriteLine(" Loading logger flags..."); object o_flags = LoggingettingsSubscriber.GetValue("LoggingFlags"); loggerflags logflags = (ushort)Convert.ChangeType(o_flags, typeof(ushort)); if (logflags != logger.GetLoggingFlags()) @@ -162,11 +163,11 @@ } //grpLoggingFlags.AutoSize = true; //grpLoggingFlags.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - logger.Info.WriteLine(" Loaded logger flags."); + gLog.Info.WriteLine(" Loaded logger flags."); } private void btnSave_Click(object sender, EventArgs e) { - logger.Info.WriteLine("Saving user settings..."); + gLog.Info.WriteLine("Saving user settings..."); SaveSettings(); this.Close(); } @@ -182,33 +183,33 @@ LoggingettingsSubscriber.SaveSettings(); //RomCheater.Properties.Settings.Default.Save(); //Logging.Properties.Settings.Default.Save(); - logger.Info.WriteLine("Saved user settings."); + gLog.Info.WriteLine("Saved user settings."); } private void SaveSelectedPlugins() { - logger.VerboseDebug.WriteLine(" Setting LastConfigPlugin to {0}", comboConfigPlugins.Items[comboConfigPlugins.SelectedIndex].ToString()); + gLog.Verbose.Debug.WriteLine(" Setting LastConfigPlugin to {0}", comboConfigPlugins.Items[comboConfigPlugins.SelectedIndex].ToString()); MainSettingsSubscriber.SetValue("LastConfigPlugin",comboConfigPlugins.Items[comboConfigPlugins.SelectedIndex].ToString()); - logger.VerboseDebug.WriteLine(" Setting LastInputPlugin to {0}", comboInputPlugins.Items[comboInputPlugins.SelectedIndex].ToString()); + gLog.Verbose.Debug.WriteLine(" Setting LastInputPlugin to {0}", comboInputPlugins.Items[comboInputPlugins.SelectedIndex].ToString()); MainSettingsSubscriber.SetValue("LastInputPlugin", comboInputPlugins.Items[comboInputPlugins.SelectedIndex].ToString()); - logger.VerboseDebug.WriteLine(" Setting LastWindowPlugin to {0}", comboWindowPlugins.Items[comboWindowPlugins.SelectedIndex].ToString()); + gLog.Verbose.Debug.WriteLine(" Setting LastWindowPlugin to {0}", comboWindowPlugins.Items[comboWindowPlugins.SelectedIndex].ToString()); MainSettingsSubscriber.SetValue("LastWindowPlugin", comboWindowPlugins.Items[comboWindowPlugins.SelectedIndex].ToString()); } private void SaveLoggingFlags() { - logger.Debug.WriteLine("Saving Logger flags..."); + gLog.Debug.WriteLine("Saving Logger flags..."); ushort logflags = loggerflags.NONE; foreach (CheckBox cb in grpLoggingFlags_flow.Controls) { if (!cb.Checked) continue; ushort value = Convert.ToUInt16(cb.Tag); logflags = (ushort)(logflags | value); - logger.VerboseDebug.WriteLine("\tAdding flag: {0} value: 0x{1:x4} LoggingFlags=0x{2:x4}", cb.Text, value, (int)logflags); + gLog.Verbose.Debug.WriteLine("\tAdding flag: {0} value: 0x{1:x4} LoggingFlags=0x{2:x4}", cb.Text, value, (int)logflags); } LoggingettingsSubscriber.SetValue("LoggingFlags", (ushort)logflags); - logger.Debug.WriteLine("Saved Logger flags."); + gLog.Debug.WriteLine("Saved Logger flags."); } private void RomCheaterConfigDialog_FormClosing(object sender, FormClosingEventArgs e)
ViewVC Help | |
Powered by ViewVC 1.1.22 |