Log server sync errors as warnings instead
This commit is contained in:
		@@ -274,7 +274,7 @@ class MatrixClient(nio.AsyncClient):
 | 
				
			|||||||
                trace = traceback.format_exc().rstrip()
 | 
					                trace = traceback.format_exc().rstrip()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if isinstance(err, MatrixError) and err.http_code >= 500:
 | 
					                if isinstance(err, MatrixError) and err.http_code >= 500:
 | 
				
			||||||
                    log.error("Server failure during sync:\n%s", trace)
 | 
					                    log.warning("Server failure during sync:\n%s", trace)
 | 
				
			||||||
                else:
 | 
					                else:
 | 
				
			||||||
                    LoopException(str(err), err, trace)
 | 
					                    LoopException(str(err), err, trace)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user