Skip to content
This repository was archived by the owner on Mar 1, 2021. It is now read-only.

Commit 801466e

Browse files
committed
(maint) Corrected logging levels
1 parent e0552a5 commit 801466e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Cake.DotNetTool.Module/DotNetToolPackageInstaller.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public IReadOnlyCollection<IFile> Install(PackageReference package, PackageType
9999
// We are going to assume that the default install location is the
100100
// currently configured location for the Cake Tools Folder
101101
var toolsFolderDirectoryPath = _config.GetToolPath(_environment.WorkingDirectory, _environment);
102-
_log.Information("Configured Tools Folder: {0}", toolsFolderDirectoryPath);
102+
_log.Debug("Configured Tools Folder: {0}", toolsFolderDirectoryPath);
103103

104104
var toolLocation = toolsFolderDirectoryPath.FullPath;
105105
if(package.Parameters.ContainsKey("global"))
@@ -143,7 +143,7 @@ private List<string> GetInstalledTools(string toolLocation)
143143
// installed there, so simply return an empty list.
144144
if(!toolLocationDirectory.Exists)
145145
{
146-
_log.Information("Specified installation location doesn't currently exist.");
146+
_log.Debug("Specified installation location doesn't currently exist.");
147147
return new List<string>();
148148
}
149149
}

0 commit comments

Comments
 (0)