mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
chore: extra logging
This commit is contained in:
parent
c56038cadf
commit
2e0ac0b2f5
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ Future<bool> checkElectrumServer({
|
||||||
.timeout(Duration(seconds: (proxyInfo == null ? 5 : 30)));
|
.timeout(Duration(seconds: (proxyInfo == null ? 5 : 30)));
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
} catch (_) {
|
} catch (e, s) {
|
||||||
|
Logging.instance.log("$e\n$s", level: LogLevel.Debug);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue