--- trunk/RomCheater.CorePlugins/Config/GenericConfig.cs 2012/05/09 22:48:59 97 +++ trunk/RomCheater.CorePlugins/Config/GenericConfig.cs 2012/05/09 23:10:12 98 @@ -5,6 +5,7 @@ using System.Text; using RomCheater.PluginFramework.Core; using System.Diagnostics; using System.Security.Principal; +using RomCheater.Logging; namespace RomCheater.CorePlugins.Config { @@ -13,7 +14,11 @@ namespace RomCheater.CorePlugins.Config public GenericConfig() : base() { } public GenericConfig(bool doinit) : base(doinit) { } - protected override bool IsNotValidProcess(ProcContainer p) { return false; } + protected override bool IsNotValidProcess(ProcContainer p) + { + logger.Debug.WriteLine(" Allowing process {0} to be added",p.Name); + return false; + } #region IPluginBase Members public override Guid ID { |