소스 검색

Fix logging of messages that are binary before closing their connection (#25361)

Emelia Smith 1 년 전
부모
커밋
23e7b4d28d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      streaming/index.js

+ 1 - 1
streaming/index.js

@@ -1219,7 +1219,7 @@ const startWorker = async (workerId) => {
 
     ws.on('message', (data, isBinary) => {
       if (isBinary) {
-        log.debug('Received binary data, closing connection');
+        log.warn('socket', 'Received binary data, closing connection');
         ws.close(1003, 'The mastodon streaming server does not support binary messages');
         return;
       }