Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
feat: split logs
Browse files Browse the repository at this point in the history
  • Loading branch information
futrime committed Apr 9, 2023
1 parent 6b5445d commit bda970f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

None

## 24.8.0

### Changed

- Split logging files

### Added

- Logging when receiving messages

## 24.7.0

## Added
Expand Down
1 change: 1 addition & 0 deletions Source/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,7 @@ private void buttonEnd_Click(object sender, EventArgs e)

private void buttonReset_Click(object sender, EventArgs e)
{
this._logger = new Logger(Path.Combine(Directory.GetCurrentDirectory(), "Logs", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".log"));
this._game = new Game();

this.labelScoreVehicleA.Text = "N/A";
Expand Down

0 comments on commit bda970f

Please sign in to comment.