Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Coloryr committed Jul 17, 2024
1 parent d2a10c7 commit 66204c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ColorMC.Core/CoreMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace ColorMC.Core;
public static class ColorMCCore
{
public const string TopVersion = "A27";
public const string DateVersion = "20240716";
public const string DateVersion = "20240717";

/// <summary>
/// 版本号
Expand Down
6 changes: 3 additions & 3 deletions src/ColorMC.Core/Utils/Logs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ public static string Crash(string data, Exception e)
var date = DateTime.Now;
string text = $"Version:{ColorMCCore.Version}{Environment.NewLine}" +
$"System:{SystemInfo.System}{Environment.NewLine}" +
$"SystemName:{SystemInfo.SystemName}" +
$"{data}" +
$"{Environment.NewLine}{e}";
$"SystemName:{SystemInfo.SystemName}{Environment.NewLine}" +
$"{data}{Environment.NewLine}" +
$"{e}";

var file = $"{s_local}{date.Year}_{date.Month}_{date.Day}_" +
$"{date.Hour}_{date.Minute}_{date.Second}_crash.log";
Expand Down

0 comments on commit 66204c7

Please sign in to comment.