Zero _TickOffset

This commit is contained in:
2024-11-19 13:28:44 -07:00
parent 0475533f8e
commit c1cfe70e6a
3 changed files with 4 additions and 4 deletions

View File

@ -406,10 +406,10 @@ public class ProcessData : IProcessData
{
Complete? complete = GetComplete(logistics);
if (complete is null)
_Log.Warn($"Could not get Complete from {logistics}");
_Log.Warn($"Could not get Complete from {reportFileName}");
else
{
FileInfo fileInfo = new($"{logistics}.json");
FileInfo fileInfo = new($"{logistics.ReportFullPath}.json");
string json = JsonSerializer.Serialize(complete, CompleteSourceGenerationContext.Default.Complete);
File.WriteAllText(fileInfo.FullName, json);
fileInfoCollection.Add(fileInfo);