Commit d93a9652 authored by Raphael Nestler's avatar Raphael Nestler Committed by oroulet

Use info log level for client and server limit update message

Fixes #1180
parent 2c78916f
......@@ -60,7 +60,7 @@ class TransportLimits:
self.max_recv_buffer = ack.SendBufferSize
self.max_send_buffer = ack.ReceiveBufferSize
self.max_message_size = ack.MaxMessageSize
logger.warning("updating server limits to: %s", self)
logger.info("updating server limits to: %s", self)
return ack
def create_hello_limits(self, msg: ua.Hello) -> ua.Hello:
......@@ -74,7 +74,7 @@ class TransportLimits:
self.max_recv_buffer = msg.ReceiveBufferSize
self.max_send_buffer = msg.SendBufferSize
self.max_message_size = msg.MaxMessageSize
logger.warning("updating client limits to: %s", self)
logger.info("updating client limits to: %s", self)
class MessageChunk:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment