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

Commit bda970f

Browse files
committed
feat: split logs
1 parent 6b5445d commit bda970f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
None
1111

12+
## 24.8.0
13+
14+
### Changed
15+
16+
- Split logging files
17+
18+
### Added
19+
20+
- Logging when receiving messages
21+
1222
## 24.7.0
1323

1424
## Added

Source/MainWindow.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,7 @@ private void buttonEnd_Click(object sender, EventArgs e)
942942

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

947948
this.labelScoreVehicleA.Text = "N/A";

0 commit comments

Comments
 (0)