Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lowered logging level thats flooding logs #54

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
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
26 changes: 13 additions & 13 deletions doc/dependency_decisions.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
- :who: mocsharp
:why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt)
:versions:
- 6.0.12
:when: 2022-10-14 23:36:49.751931025 Z
- 6.0.15
:when: 2023-10-07 17:36:49.751931025 Z
- - :approve
- Microsoft.AspNetCore.TestHost
- :who: mocsharp
:why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt)
:versions:
- 6.0.12
:when: 2022-10-14 23:36:49.751931025 Z
- 6.0.15
:when: 2023-10-07 17:36:49.751931025 Z
- - :approve
- Microsoft.CSharp
- :who: mocsharp
Expand All @@ -39,8 +39,8 @@
- :who: mocsharp
:why: MIT (https://github.com/microsoft/vstest/raw/main/LICENSE)
:versions:
- 17.4.1
:when: 2022-08-16 23:05:48.342748414 Z
- 17.7.2
:when: 2023-10-07 17:36:49.751931025 Z
- - :approve
- Microsoft.Extensions.Configuration
- :who: mocsharp
Expand Down Expand Up @@ -256,7 +256,7 @@
- :who: mocsharp
:why: MIT (https://raw.githubusercontent.com/microsoft/vstest/main/LICENSE)
:versions:
- 17.4.1
- 17.7.2
:when: 2022-09-01 23:06:13.008314524 Z
- - :approve
- Microsoft.NETCore.Platforms
Expand All @@ -277,15 +277,15 @@
- :who: mocsharp
:why: MIT (https://github.com/microsoft/vstest/raw/v17.4.0/LICENSE)
:versions:
- 17.4.1
:when: 2022-08-16 23:06:16.175705981 Z
- 17.7.2
:when: 2023-10-07 17:36:49.751931025 Z
- - :approve
- Microsoft.TestPlatform.TestHost
- :who: mocsharp
:why: MIT (https://github.com/microsoft/vstest/raw/v17.4.0/LICENSE)
:versions:
- 17.4.1
:when: 2022-08-16 23:06:17.671459450 Z
- 17.7.2
:when: 2023-10-07 17:36:49.751931025 Z
- - :approve
- Microsoft.Win32.Primitives
- :who: mocsharp
Expand All @@ -312,8 +312,8 @@
- :who: mocsharp
:why: Apache-2.0 (https://github.com/NuGet/NuGet.Client/raw/dev/LICENSE.txt)
:versions:
- 5.11.0
:when: 2022-08-16 23:06:27.464713741 Z
- 6.5.0
:when: 2023-10-07 17:36:49.751931025 Z
- - :approve
- System.AppContext
- :who: mocsharp
Expand Down
2 changes: 1 addition & 1 deletion src/Authentication/Logging.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Monai.Deploy.WorkflowManager.Logging
{
public static partial class Log
{
[LoggerMessage(EventId = 500000, Level = LogLevel.Information, Message = "Bypass authentication.")]
[LoggerMessage(EventId = 500000, Level = LogLevel.None, Message = "Bypass authentication.")]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to set this to debug instead of none?

public static partial void BypassAuthentication(this ILogger logger);

[LoggerMessage(EventId = 500001, Level = LogLevel.Debug, Message = "User '{user}' attempting to access controller '{controller}'.")]
Expand Down
Loading