ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/ConfigPlugin.cs
(Generate patch)

Comparing trunk/RomCheater.PluginFramework/Core/ConfigPlugin.cs (file contents):
Revision 98 by william, Wed May 9 23:10:12 2012 UTC vs.
Revision 99 by william, Wed May 9 23:23:38 2012 UTC

--- trunk/RomCheater.PluginFramework/Core/ConfigPlugin.cs	2012/05/09 23:10:12	98
+++ trunk/RomCheater.PluginFramework/Core/ConfigPlugin.cs	2012/05/09 23:23:38	99
@@ -35,19 +35,19 @@ namespace RomCheater.PluginFramework.Cor
                     string proc_user = ThreadControl.GetProcessOwner(proc.Handle, out isSystem).ToLower();
                     if (isSystem)
                     {
-                        logger.Debug.WriteLine("    not adding process {0} because it is a system process", proc_name);
+                        logger.VerboseDebug.WriteLine("    not adding process {0} because it is a system process", proc_name);
                         continue;
                     }
                     ProcContainer container = null;
                     try
                     {                       
                         container = new ProcContainer(proc);
-                        logger.Debug.WriteLine("  adding process {0} ", proc_name);
+                        logger.VerboseDebug.WriteLine("  adding process {0} ", proc_name);
                     }
                     catch (Exception ex)
                     {
                         //throw;
-                        logger.Debug.WriteLine("    not adding process {0} because it thew an exception [{1}]", proc_name, ex.Message);
+                        logger.VerboseDebug.WriteLine("    not adding process {0} because it thew an exception [{1}]", proc_name, ex.Message);
                         continue;
                     }
                     proc_list.Add(container);