Skip to content

Commit

Permalink
Set minimum log level
Browse files Browse the repository at this point in the history
Set the minimum log level to Information.
  • Loading branch information
martincostello committed Nov 26, 2023
1 parent 8eaaf92 commit aaa877f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LondonTravel.Skill/AlexaFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ protected virtual void ConfigureServices(IServiceCollection services)
services.AddLogging((builder) =>
{
builder.AddJsonConsole()
.AddFilter(FilterLogs);
.AddFilter(FilterLogs)
.SetMinimumLevel(LogLevel.Information);
});

services.AddHttpClients();
Expand Down

0 comments on commit aaa877f

Please sign in to comment.