Skip to content

Commit

Permalink
removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Oct 5, 2019
1 parent 3da540b commit 3df9af8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/BuildVision/Services/BuildInformationProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ private bool TryGetProjectItem(BuildProjectContextEntry projectEntry, out IProje
{
string projectConfiguration = projectProperties["Configuration"];
string projectPlatform = projectProperties["Platform"];
_logger.Information("Lookup ProjectItem for ProjectFile='{ProjectFile}', Configuration='{ProjectConfiguration}, Platform='{ProjectPlatform}'.", projectFile, projectConfiguration, projectPlatform);
projectItem = Projects.FirstOrDefault(item => $"{item.FullName}-{item.Configuration}|{item.Platform.Replace(" ", "")}" == $"{projectFile}-{projectConfiguration}|{projectPlatform}");
if (projectItem == null)
{
Expand Down
2 changes: 0 additions & 2 deletions src/BuildVision/Services/BuildOutputLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ private void OnProjectStarted(object sender, ProjectStartedEventArgs e)
{
_projectsLookup.Add(entry.ProjectFile, entry);
}

_logger.Information("Currently there are {Count} projects listed.", _projectsLookup.Count);
}

public void Attach()
Expand Down

0 comments on commit 3df9af8

Please sign in to comment.