Skip to content

Commit 27e603d

Browse files
committed
logging der 5.
1 parent 7ceeb88 commit 27e603d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ModVerify.CliApp/Reporting/BaselineFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public bool TryCreateBaseline(
4949
}
5050
catch (InvalidBaselineException e)
5151
{
52-
_logger?.LogDebug("'{JsonFile}' is not a valid baseline file: {EMessage}", jsonFile, e.Message);
52+
_logger?.LogDebug("'{JsonFile}' is not a valid baseline file: {Message}", jsonFile, e.Message);
5353
// Ignore this exception
5454
}
5555
}

src/ModVerify.CliApp/Reporting/BaselineSelector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private VerificationBaseline FindBaselineInteractive(VerifyInstallationData inst
6969
if (!_baselineFactory.TryCreateBaseline(installationData.GameLocations.TargetPath, out var baseline,
7070
out baselinePath))
7171
{
72-
if (!_baselineFactory.TryCreateBaseline(".", out baseline, out baselinePath))
72+
if (!_baselineFactory.TryCreateBaseline("./", out baseline, out baselinePath))
7373
{
7474
// It does not make sense to load the game's default baselines if the user wants to verify the game,
7575
// as the verification result would always be empty (at least in a non-development scenario)

0 commit comments

Comments
 (0)