-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathMcpLoggingLevelExtensions.cs
29 lines (26 loc) · 1.06 KB
/
McpLoggingLevelExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using Microsoft.Extensions.Logging;
using ModelContextProtocol.Protocol.Types;
namespace ModelContextProtocol.Logging;
internal static class McpLoggingLevelExtensions
{
public static LogLevel ToLogLevel(this LoggingLevel level)
=> level switch
{
LoggingLevel.Emergency or LoggingLevel.Alert or LoggingLevel.Critical => LogLevel.Critical,
LoggingLevel.Error => LogLevel.Error,
LoggingLevel.Warning => LogLevel.Warning,
LoggingLevel.Notice or LoggingLevel.Info => LogLevel.Information,
LoggingLevel.Debug => LogLevel.Debug,
_ => LogLevel.None,
};
public static LoggingLevel ToLoggingLevel(this LogLevel level)
=> level switch
{
LogLevel.Critical => LoggingLevel.Critical,
LogLevel.Error => LoggingLevel.Error,
LogLevel.Warning => LoggingLevel.Warning,
LogLevel.Information => LoggingLevel.Info,
LogLevel.Debug or LogLevel.Trace => LoggingLevel.Debug,
_ => LoggingLevel.Info,
};
}