ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/Config/PCSX2Config.cs
(Generate patch)

Comparing trunk/RomCheater.CorePlugins/Config/PCSX2Config.cs (file contents):
Revision 99 by william, Wed May 9 23:23:38 2012 UTC vs.
Revision 108 by william, Thu May 10 11:31:05 2012 UTC

--- trunk/RomCheater.CorePlugins/Config/PCSX2Config.cs	2012/05/09 23:23:38	99
+++ trunk/RomCheater.CorePlugins/Config/PCSX2Config.cs	2012/05/10 11:31:05	108
@@ -30,11 +30,11 @@ namespace RomCheater.CorePlugins.Config
             bool notvalid = !IsValidPSX2Process(p.ProcessInfo.Id, out isDebug, out VTLB_RELEASE_OFFSET);
             if (notvalid)
             {
-                logger.Debug.WriteLine("    Not Allowing process {0} to be added because it was filterd out", p.Name);
+                logger.VerboseDebug.WriteLine("    Not Allowing process {0} to be added because it was filterd out", p.Name);
             }
             else
             {
-                logger.Debug.WriteLine("    Allowing process {0} to be added", p.Name);
+                logger.VerboseDebug.WriteLine("    Allowing process {0} to be added", p.Name);
             }
             return notvalid;
         }
@@ -86,7 +86,7 @@ namespace RomCheater.CorePlugins.Config
                 r.Close();
                 if (!isExe)
                 {
-                    logger.Debug.WriteLine("  Process: {0} is not a valid executable file", filename);
+                    logger.VerboseDebug.WriteLine("  Process: {0} is not a valid executable file", filename);
                     isValid = false;
                 }
                 else
@@ -98,7 +98,7 @@ namespace RomCheater.CorePlugins.Config
                     if (found_string.ToLower().Contains(PCXS2_LOOKUP_MAGIC_001.ToLower()) && found_string.ToLower().Contains(PCXS2_LOOKUP_MAGIC_002.ToLower()))
                     {
                         isValid = true;
-                        logger.Debug.WriteLine("  Process: {0} found MAGIC LOOKUP {1} and {2}", filename, PCXS2_LOOKUP_MAGIC_001.ToLower(), PCXS2_LOOKUP_MAGIC_002.ToLower());
+                        logger.VerboseDebug.WriteLine("  Process: {0} found MAGIC LOOKUP {1} and {2}", filename, PCXS2_LOOKUP_MAGIC_001.ToLower(), PCXS2_LOOKUP_MAGIC_002.ToLower());
                     }
                     sr.Close();
 
@@ -110,7 +110,7 @@ namespace RomCheater.CorePlugins.Config
                     if (found_string.ToLower().Contains("DebugBreak".ToLower()))
                     {
                         isDebug = true;
-                        logger.Debug.WriteLine("  Process: {0} found DebugBreak", filename);
+                        logger.VerboseDebug.WriteLine("  Process: {0} found DebugBreak", filename);
                     }
                     sr.Close();
                 }