Increase urgency of Logger.Error; bump version number

This commit is contained in:
Matt Nadareski
2016-03-30 13:38:38 -07:00
parent 2d4a4fa668
commit ab0392404e
4 changed files with 4 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ namespace SabreTools.Helper
/// <returns>True if the output could be written, false otherwise</returns>
public bool Error(string output)
{
return Log("Error: " + output);
return Log("ERROR: " + output);
}
}
}