Init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace QFSW.QC.Actions
|
||||
{
|
||||
/// <summary>
|
||||
/// Removes the most recent log from the console.
|
||||
/// </summary>
|
||||
public class RemoveLog : ICommandAction
|
||||
{
|
||||
public bool IsFinished => true;
|
||||
public bool StartsIdle => false;
|
||||
|
||||
public void Start(ActionContext context) { }
|
||||
|
||||
public void Finalize(ActionContext context)
|
||||
{
|
||||
context.Console.RemoveLogTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user