After upgrading my own project from an earlier (a few months back) version of Azure Functions to current, I get the following error upon launching from VS.
GetLoginUrl: Microsoft.Azure.WebJobs.Host: Error indexing method 'Login.GetLoginUrl'. Microsoft.Azure.WebJobs.Host: Cannot bind parameter 'log' to type ILogger. Make sure the parameter Type is supported by the binding. If you're using binding extensions (e.g. ServiceBus, Timers, etc.) make sure you've called the registration method for the extension(s) in your startup code (e.g. config.UseServiceBus(), config.UseTimers(), etc.).
Before, I used to have TraceWriter log
as the last parameter to my methods but then I found out I should be using ILogger
instead. Before I made the change, I was getting the same error as above.
The ILogger
seems to be mapped to assembly Microsoft.Extensions.Logging.Abstractions
. Perhaps this is why it is not recognized? Which ILogger
should be used? Here is the method signature.
[FunctionName("GetLoginUrl")]
public static HttpResponseMessage GetLoginUrl(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = null)]HttpRequestMessage req,
ILogger log)
I did not try to deploy this to Azure.
Unfortunately, creating a brand new Functions project does not help as there are no .CS files to look up to in order to correct this.
Microsoft.Extensions.Logging.Abstractions
is the correct assembly.
You are probably referencing some older NuGet packages directly (e.g. Microsoft.Azure.WebJobs
). If so, be sure to remove it. Unless you are using some additional binding, your csproj
references should look as simple as this:
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.4" />
</ItemGroup>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With