remove emojis from console
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user