remove emojis from console

This commit is contained in:
Dobromir Popov
2025-10-25 16:35:08 +03:00
parent 5aa4925cff
commit b8f54e61fa
75 changed files with 828 additions and 828 deletions

View File

@@ -324,10 +324,10 @@ class BybitRestClient:
"""
try:
result = self.get_server_time()
logger.info(" Bybit REST API connectivity test successful")
logger.info(" Bybit REST API connectivity test successful")
return True
except Exception as e:
logger.error(f" Bybit REST API connectivity test failed: {e}")
logger.error(f" Bybit REST API connectivity test failed: {e}")
return False
def test_authentication(self) -> bool:
@@ -338,8 +338,8 @@ class BybitRestClient:
"""
try:
result = self.get_account_info()
logger.info(" Bybit REST API authentication test successful")
logger.info(" Bybit REST API authentication test successful")
return True
except Exception as e:
logger.error(f" Bybit REST API authentication test failed: {e}")
logger.error(f" Bybit REST API authentication test failed: {e}")
return False