Skip to content

Commit 2bed5f1

Browse files
committed
Move logs into separate logs folder
1 parent 2af5407 commit 2bed5f1

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ Below are some useful information that you can include to help with troubleshoot
1212
- Description of the issue & expected behavior
1313
- Steps to reproduce the issue
1414
- If the issue happens consistently, an export of your profile would help tremendously.
15-
- Log files at `%appdata%\Elgato\StreamDeck\Plugins\tech.flighttracker.streamdeck.sdPlugin\flightstreamdeck*.log`
15+
- Log files in folder `%appdata%\Elgato\StreamDeck\Plugins\tech.flighttracker.streamdeck.sdPlugin\logs\`
1616
- Screenshots

FlightStreamDeck.AddOn/App.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private void ConfigureServices(ServiceCollection services)
7474
.WriteTo.Debug()
7575
.WriteTo.Logger(config => config
7676
.MinimumLevel.Information()
77-
.WriteTo.File("flightstreamdeck.log", rollingInterval: RollingInterval.Day, retainedFileCountLimit: 3)
77+
.WriteTo.File("logs/flightstreamdeck.log", rollingInterval: RollingInterval.Day, retainedFileCountLimit: 3)
7878
)
7979
.CreateLogger();
8080

FlightStreamDeck.sln

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29905.134
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.4.33122.133
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlightStreamDeck.AddOn", "FlightStreamDeck.AddOn\FlightStreamDeck.AddOn.csproj", "{42B9357C-1C8F-4CE1-8004-87FD9BA5D1D8}"
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlightStreamDeck.Logics", "FlightStreamDeck.Logics\FlightStreamDeck.Logics.csproj", "{24CC2B15-4D4D-488C-8B42-B1B7F489BF33}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A33D2176-6EEB-4C53-8282-8130D42C0198}"
1111
ProjectSection(SolutionItems) = preProject
12+
.github\ISSUE_TEMPLATE\bug_report.md = .github\ISSUE_TEMPLATE\bug_report.md
1213
build.bat = build.bat
14+
.github\ISSUE_TEMPLATE\feature_request.md = .github\ISSUE_TEMPLATE\feature_request.md
1315
README.md = README.md
1416
docs\USERGUIDE.md = docs\USERGUIDE.md
1517
EndProjectSection

0 commit comments

Comments
 (0)