We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c1910ed + 84769c1 commit 8377e43Copy full SHA for 8377e43
app/directadmin_api.py
@@ -167,7 +167,10 @@ def test_connection(self):
167
return False, "Failed to connect. Please check your credentials."
168
169
except Exception as e:
170
- return False, f"Connection error: {str(e)}"
+ import traceback
171
+ print(f"Connection error: {str(e)}")
172
+ traceback.print_exc()
173
+ return False, "Connection error: Unable to connect to DirectAdmin."
174
175
def get_email_accounts(self):
176
"""Get all email accounts for the domain"""
0 commit comments