-
Notifications
You must be signed in to change notification settings - Fork 864
Expand file tree
/
Copy pathlogback.xml
More file actions
27 lines (21 loc) · 808 Bytes
/
logback.xml
File metadata and controls
27 lines (21 loc) · 808 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration>
<configuration>
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<!-- Main MCP package -->
<logger name="io.modelcontextprotocol" level="INFO"/>
<!-- Client packages -->
<logger name="io.modelcontextprotocol.client" level="INFO"/>
<!-- Server transport package -->
<logger name="io.modelcontextprotocol.server.transport" level="INFO"/>
<!-- Spec package -->
<logger name="io.modelcontextprotocol.spec" level="INFO"/>
<!-- Root logger -->
<root level="INFO">
<appender-ref ref="CONSOLE"/>
</root>
</configuration>