Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CHKZL committed Jan 10, 2025
1 parent cdda4a0 commit dfbd7ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Tools/DebuggingRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ public static string GenerateReportSnapshot()
if (File.Exists(LogModule.LogDB.ErrorFilePath))
{
FileInfo fileInfo = new(LogModule.LogDB.ErrorFilePath);
File.Copy(LogModule.LogDB.ErrorFilePath, $"{GIDPath}{fileInfo.Name}");
File.Copy(LogModule.LogDB.ErrorFilePath, $"{GIDPath}{fileInfo.Name}",true);
}
if (File.Exists(LogModule.LogDB.dbPath))
{
FileInfo fileInfo = new(LogModule.LogDB.dbPath);
File.Copy(LogModule.LogDB.dbPath, $"{GIDPath}{fileInfo.Name}");
File.Copy(LogModule.LogDB.dbPath, $"{GIDPath}{fileInfo.Name}",true);
}


Expand Down

0 comments on commit dfbd7ec

Please sign in to comment.