39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace RoboSharp.DefaultConfigurations
|
|
{
|
|
/// <summary>
|
|
/// This is the Default Configuration class to use
|
|
/// </summary>
|
|
internal class RoboSharpConfig_EN : RoboSharpConfiguration
|
|
{
|
|
public RoboSharpConfig_EN() : base()
|
|
{
|
|
errorToken = "ERROR";
|
|
errorTokenRegex = RoboSharpConfiguration.ErrorTokenRegexGenerator(errorToken);
|
|
//errorTokenRegex = new Regex($" ERROR " + @"(\d{1,3}) \(0x\d{8}\) ", RegexOptions.Compiled);
|
|
|
|
// < File Tokens >
|
|
|
|
LogParsing_NewFile = "New File";
|
|
LogParsing_OlderFile = "Older";
|
|
LogParsing_NewerFile = "Newer";
|
|
LogParsing_SameFile = "same";
|
|
LogParsing_ExtraFile = "*EXTRA File";
|
|
LogParsing_MismatchFile = "*Mismatch";
|
|
LogParsing_FailedFile = "*Failed";
|
|
LogParsing_FileExclusion = "named";
|
|
|
|
// < Directory Tokens >
|
|
|
|
LogParsing_NewDir = "New Dir";
|
|
LogParsing_ExtraDir = "*EXTRA Dir";
|
|
LogParsing_ExistingDir = "Existing Dir";
|
|
LogParsing_DirectoryExclusion = "named";
|
|
}
|
|
}
|
|
} |