Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected override async Task OnFileFound(ProcessRequest processRequest, IDictio
var singleFileComponentRecorder = processRequest.SingleFileComponentRecorder;
var file = processRequest.ComponentStream;

this.Logger.LogWarning($"vcpkg detector found {file}");
this.Logger.LogInfo($"vcpkg detector found {file}");

var projectRootDirectory = Directory.GetParent(file.Location);
if (this.projectRoots.Any(path => projectRootDirectory.FullName.StartsWith(path)))
Expand Down Expand Up @@ -78,7 +78,7 @@ private async Task ParseSpdxFile(
continue;
}

this.Logger.LogWarning($"parsed package {item.Name}");
this.Logger.LogVerbose($"vcpkg parsed package {item.Name}");
if (item.SPDXID == "SPDXRef-port")
{
var split = item.VersionInfo.Split('#');
Expand Down