Don't hash framecount of >256mb files as it's too slow and I/O heavy

This commit is contained in:
N00MKRAD
2021-02-04 21:18:36 +01:00
parent 99ed008d74
commit 2932e702e3
3 changed files with 27 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ namespace Flowframes
try { return int.Parse(str.TrimNumbers()); }
catch (Exception e)
{
Logger.Log("Failed to parse \"" + str + "\" to int: " + e, true);
Logger.Log("Failed to parse \"" + str + "\" to int: " + e.Message, true);
return 0;
}
}