1 |
using System; |
#define DISALLOW_VERBOSE_LOGGING // when defined will disallow verbose logging for performance reasons |
2 |
|
using System; |
3 |
using System.Collections.Generic; |
using System.Collections.Generic; |
4 |
using System.Linq; |
using System.Linq; |
5 |
using System.Text; |
using System.Text; |
16 |
public GenericConfig(bool doinit) : base(doinit) { } |
public GenericConfig(bool doinit) : base(doinit) { } |
17 |
protected override bool IsNotValidProcess(ProcContainer p) |
protected override bool IsNotValidProcess(ProcContainer p) |
18 |
{ |
{ |
19 |
|
#if !DISALLOW_VERBOSE_LOGGING |
20 |
logger.VerboseDebug.WriteLine(" Allowing process {0} to be added", p.Name); |
logger.VerboseDebug.WriteLine(" Allowing process {0} to be added", p.Name); |
21 |
|
#endif |
22 |
return false; |
return false; |
23 |
} |
} |
24 |
#region IPluginBase Members |
#region IPluginBase Members |