Skip to content

Commit fbf4a31

Browse files
authored
Merge pull request #112 from valkey-io/aiven-sal/logger
parsers: resp3: be less verbose
2 parents e1be67b + 8b052c8 commit fbf4a31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

valkey/_parsers/resp3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, socket_read_size):
1919

2020
def handle_pubsub_push_response(self, response):
2121
logger = getLogger("push_response")
22-
logger.info("Push response: " + str(response))
22+
logger.debug("Push response: " + str(response))
2323
return response
2424

2525
def read_response(self, disable_decoding=False, push_request=False):
@@ -150,7 +150,7 @@ def __init__(self, socket_read_size):
150150

151151
def handle_pubsub_push_response(self, response):
152152
logger = getLogger("push_response")
153-
logger.info("Push response: " + str(response))
153+
logger.debug("Push response: " + str(response))
154154
return response
155155

156156
async def read_response(

0 commit comments

Comments
 (0)