mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Wire up source for logging where possible
This commit is contained in:
@@ -11,17 +11,38 @@ namespace SabreTools.Library.Help
|
||||
/// </summary>
|
||||
public abstract class TopLevel : Feature
|
||||
{
|
||||
#region Fields
|
||||
|
||||
/// <summary>
|
||||
/// List of files, directories, and potential wildcard paths
|
||||
/// </summary>
|
||||
public List<string> Inputs = new List<string>();
|
||||
|
||||
#endregion
|
||||
|
||||
#region Logging
|
||||
|
||||
/// <summary>
|
||||
/// Logging object
|
||||
/// </summary>
|
||||
private readonly Logger logger = new Logger();
|
||||
private readonly Logger logger;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
public TopLevel()
|
||||
{
|
||||
logger = new Logger(this);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Processing
|
||||
|
||||
/// <summary>
|
||||
/// Process args list based on current feature
|
||||
/// </summary>
|
||||
@@ -63,6 +84,8 @@ namespace SabreTools.Library.Help
|
||||
/// </summary>
|
||||
public virtual void ProcessFeatures(Dictionary<string, Feature> features) { }
|
||||
|
||||
#endregion
|
||||
|
||||
#region Generic Extraction
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user