jobloading errormessage

This commit is contained in:
Glax 2025-01-15 22:15:33 +01:00
parent 2350c5a04b
commit 123a8b06b2

View File

@ -178,7 +178,8 @@ public class JobBoss : GlobalBase
throw;
Log(e.Message);
string newName = file.FullName + ".failed";
Log($"Failed loading file {file.Name}.\nMoving to {newName}");
Log($"Failed loading file {file.Name}.\nMoving to {newName}.\n" +
$"If you think this is a bug, upload contents of the file to the Bugreport!");
File.Move(file.FullName, newName);
continue;
}