Commit 4f8bc4b8a86854999e475092661ad3b3072bfa93
1 parent
06078a31
Reduced log level of the REST client
Showing
2 changed files
with
34 additions
and
3 deletions
... | ... | @@ -41,9 +41,6 @@ |
41 | 41 | <!-- <logger name="org.thingsboard.server.service.queue.TbMsgPackProcessingContext" level="DEBUG" /> --> |
42 | 42 | |
43 | 43 | <logger name="com.microsoft.azure.servicebus.primitives.CoreMessageReceiver" level="OFF" /> |
44 | - <logger name="org.thingsboard.server.transport" level="TRACE" /> | |
45 | - <logger name="org.thingsboard.server.coap.transport" level="TRACE" /> | |
46 | - <logger name="org.eclipse" level="TRACE" /> | |
47 | 44 | |
48 | 45 | <root level="INFO"> |
49 | 46 | <appender-ref ref="STDOUT"/> | ... | ... |
rest-client/src/main/resources/logback.xml
0 → 100644
1 | +<?xml version="1.0" encoding="UTF-8" ?> | |
2 | +<!-- | |
3 | + | |
4 | + Copyright © 2016-2021 The Thingsboard Authors | |
5 | + | |
6 | + Licensed under the Apache License, Version 2.0 (the "License"); | |
7 | + you may not use this file except in compliance with the License. | |
8 | + You may obtain a copy of the License at | |
9 | + | |
10 | + http://www.apache.org/licenses/LICENSE-2.0 | |
11 | + | |
12 | + Unless required by applicable law or agreed to in writing, software | |
13 | + distributed under the License is distributed on an "AS IS" BASIS, | |
14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
15 | + See the License for the specific language governing permissions and | |
16 | + limitations under the License. | |
17 | + | |
18 | +--> | |
19 | +<!DOCTYPE configuration> | |
20 | +<configuration> | |
21 | + | |
22 | + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
23 | + <encoder> | |
24 | + <pattern>%d{ISO8601} [%thread] %-5level %logger{36} - %msg%n</pattern> | |
25 | + </encoder> | |
26 | + </appender> | |
27 | + | |
28 | + <logger name="org.thingsboard.server" level="INFO" /> | |
29 | + | |
30 | + <root level="INFO"> | |
31 | + <appender-ref ref="STDOUT"/> | |
32 | + </root> | |
33 | + | |
34 | +</configuration> | ... | ... |