Skip to content

Commit

Permalink
fix: Don't throw a warning if an output folder is specified (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveTryon authored Apr 10, 2024
1 parent 09994cd commit 3d1a59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.Sbom.Api/Workflows/SBOMGenerationWorkflow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public virtual async Task<bool> RunAsync()
}
else
{
log.Warning("Manifest directory path was explicitly defined. Will not attempt to delete any existing _manifest directory.");
log.Information("Manifest directory path was explicitly defined. Will not attempt to delete any existing _manifest directory.");
}

await using (sbomConfigs.StartJsonSerializationAsync())
Expand Down

0 comments on commit 3d1a59f

Please sign in to comment.