Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Azure Functions CLI 4.2.2
# Azure Functions CLI 4.2.3

#### Host Version

Expand All @@ -7,4 +7,4 @@

#### Changes

- Fix .NET template install bug (#4612)
- Log the resolved worker runtime and `local.settings.json` location, if found.
4 changes: 4 additions & 0 deletions src/Cli/func/Common/SecretsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

using Azure.Functions.Cli.Helpers;
using Azure.Functions.Cli.Interfaces;
using Colors.Net;
using Microsoft.Azure.WebJobs.Script;
using Microsoft.Build.Logging;

namespace Azure.Functions.Cli.Common
{
Expand All @@ -24,6 +26,8 @@ public static string AppSettingsFilePath
secretsFile,
});
var secretsFilePath = Path.Combine(rootPath, secretsFile);

ColoredConsole.WriteLine($"{secretsFile} found in root directory ({rootPath}).");
return secretsFilePath;
}
}
Expand Down
4 changes: 3 additions & 1 deletion src/Cli/func/Helpers/WorkerRuntimeLanguageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ public static WorkerRuntime GetCurrentWorkerRuntimeLanguage(ISecretsManager secr

try
{
return NormalizeWorkerRuntime(setting);
WorkerRuntime workerRuntime = NormalizeWorkerRuntime(setting);
ColoredConsole.WriteLine($"Resolving worker runtime to '{GetRuntimeMoniker(workerRuntime)}'.");
return workerRuntime;
}
catch
{
Expand Down
Loading