Remove debugging text

This commit is contained in:
Matt Nadareski
2016-04-12 18:12:31 -07:00
parent 61fc76f35d
commit 0ca49cb84a

View File

@@ -164,10 +164,8 @@ namespace SabreTools
// Loop over the dictionary and see if there are matches
foreach (KeyValuePair<string, int> entry in tempDict)
{
logger.Log("Attempting pattern '" + entry.Key + "' on header '" + header + "'");
if (Regex.IsMatch(header, entry.Key))
{
logger.Log("Pattern match!");
type = test;
headerSize = entry.Value;
break;