Skip to content

Commit f49c269

Browse files
authored
Merge pull request #724 from cjakeman/bad-save-handling
Strengthened log message when restoring from a bad save
2 parents 98db5c4 + aa0066d commit f49c269

File tree

1 file changed

+1
-1
lines changed
  • Source/Orts.Simulation/Simulation/Signalling

1 file changed

+1
-1
lines changed

Source/Orts.Simulation/Simulation/Signalling/Signals.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8114,7 +8114,7 @@ public void RestoreTrains(List<Train> trains, int sectionIndex)
81148114
}
81158115
else
81168116
{
8117-
Trace.TraceInformation("Invalid reservation for train : {0} [{1}], section : {2} not restored", reservedTrain.Name, reservedDirection, sectionIndex);
8117+
Trace.TraceWarning("Invalid reservation for train : {0} [{1}], section : {2} not restored. May lead to a fatal error later.", reservedTrain.Name, reservedDirection, sectionIndex);
81188118
}
81198119
}
81208120
else

0 commit comments

Comments
 (0)