Skip to content

Commit

Permalink
Downgrade two common errors to warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bouwkast committed Jan 22, 2025
1 parent ba866a8 commit 40e9144
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ protected override void Setup(IGitInfo gitInfo)

if (string.IsNullOrEmpty(defaultValue))
{
Log.Error("The Git repository couldn't be automatically extracted.");
Log.Warning("The Git repository couldn't be automatically extracted.");
}

// If not set use the default value
Expand Down Expand Up @@ -245,7 +245,7 @@ protected override void Setup(IGitInfo gitInfo)

if (string.IsNullOrEmpty(defaultValue))
{
Log.Error("The Git commit sha couldn't be automatically extracted.");
Log.Warning("The Git commit sha couldn't be automatically extracted.");
}

// If not set use the default value
Expand Down

0 comments on commit 40e9144

Please sign in to comment.