Commit 4aa225babaced85e28bdf72917de1ed437b88bc7

Authored by YevhenBondarenko
Committed by Andrew Shvayka
1 parent 53eb09bc

added exclusions to azure dependency, and added logger level OFF to CoreMessageReceiver

... ... @@ -31,8 +31,11 @@
31 31 <!-- <logger name="org.thingsboard.server.service.queue" level="TRACE" />-->
32 32 <!-- <logger name="org.thingsboard.server.service.transport" level="TRACE" />-->
33 33
  34 + <logger name="com.microsoft.azure.servicebus.primitives.CoreMessageReceiver" level="OFF" />
  35 +
34 36 <root level="INFO">
35 37 <appender-ref ref="STDOUT"/>
36 38 </root>
37 39
  40 +
38 41 </configuration>
\ No newline at end of file
... ...
... ... @@ -907,6 +907,12 @@
907 907 <groupId>com.microsoft.azure</groupId>
908 908 <artifactId>azure-servicebus</artifactId>
909 909 <version>${azure-servicebus.version}</version>
  910 + <exclusions>
  911 + <exclusion>
  912 + <groupId>com.microsoft.azure</groupId>
  913 + <artifactId>adal4j</artifactId>
  914 + </exclusion>
  915 + </exclusions>
910 916 </dependency>
911 917 <dependency>
912 918 <groupId>org.passay</groupId>
... ...