File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11# Azure Functions CLI 4.3.0
22
3-
43#### Host Version
54
65- Host Version: 4.1041.200
76- In-Proc Host Version: 4.41.100 (4.841.100, 4.641.100)
87
98#### Changes
9+
10+ - Log the resolved worker runtime and ` local.settings.json ` location, if found.
1011- Add ` func pack ` basic functionality (#4600 )
1112- Clean up HelpAction and add ` func pack ` to help menu (#4639 )
1213- Add comprehensive pack validations for all Azure Functions runtimes (#4625 )
Original file line number Diff line number Diff line change 33
44using Azure . Functions . Cli . Helpers ;
55using Azure . Functions . Cli . Interfaces ;
6+ using Colors . Net ;
67using Microsoft . Azure . WebJobs . Script ;
8+ using Microsoft . Build . Logging ;
79
810namespace Azure . Functions . Cli . Common
911{
@@ -24,6 +26,8 @@ public static string AppSettingsFilePath
2426 secretsFile ,
2527 } ) ;
2628 var secretsFilePath = Path . Combine ( rootPath , secretsFile ) ;
29+
30+ ColoredConsole . WriteLine ( $ "{ secretsFile } found in root directory ({ rootPath } ).") ;
2731 return secretsFilePath ;
2832 }
2933 }
Original file line number Diff line number Diff line change @@ -180,7 +180,9 @@ public static WorkerRuntime GetCurrentWorkerRuntimeLanguage(ISecretsManager secr
180180
181181 try
182182 {
183- return NormalizeWorkerRuntime ( setting ) ;
183+ WorkerRuntime workerRuntime = NormalizeWorkerRuntime ( setting ) ;
184+ ColoredConsole . WriteLine ( $ "Resolving worker runtime to '{ GetRuntimeMoniker ( workerRuntime ) } '.") ;
185+ return workerRuntime ;
184186 }
185187 catch
186188 {
You can’t perform that action at this time.
0 commit comments