Skip to content

Commit

Permalink
(maint)(log) surround source value with apostrophes
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Mar 3, 2019
1 parent a40709a commit bedcd19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Core/Repositories/AggregateRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,12 @@ public IQueryable<IPackage> Search(string searchTerm, IEnumerable<string> target
{
if (IgnoreFailingRepositories)
{
Logger.Log(MessageLevel.Warning, "Not able to contact source {0}. Error was {1}", r.Source, ex.Message);
Logger.Log(MessageLevel.Warning, "Not able to contact source '{0}'. Error was {1}", r.Source, ex.Message);
return Enumerable.Empty<IPackage>().AsQueryable();
}
else
{
Logger.Log(MessageLevel.Error, "Not able to contact source {0}. Error was {1}", r.Source, ex.Message);
Logger.Log(MessageLevel.Error, "Not able to contact source '{0}'. Error was {1}", r.Source, ex.Message);
throw;
}
}
Expand Down

0 comments on commit bedcd19

Please sign in to comment.