diff --git a/src/Dotnet.Script.Core/Commands/ExecuteScriptCommand.cs b/src/Dotnet.Script.Core/Commands/ExecuteScriptCommand.cs index 747f6252..6bf3809c 100644 --- a/src/Dotnet.Script.Core/Commands/ExecuteScriptCommand.cs +++ b/src/Dotnet.Script.Core/Commands/ExecuteScriptCommand.cs @@ -53,6 +53,7 @@ private string GetLibrary(ExecuteScriptCommandOptions executeOptions) && TryGetHash(executionCacheFolder, out var cachedHash) && string.Equals(hash, cachedHash)) { + _logger.Debug($"Using cached compilation: " + pathToLibrary); return pathToLibrary; }