Added some log to cryptonetmanager
This commit is contained in:
parent
c08ba24d32
commit
95ad420cd5
1 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ package cy.agorise.crystalwallet.network;
|
|||
import android.support.annotation.NonNull;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
|
@ -31,8 +32,10 @@ public abstract class CryptoNetManager {
|
|||
|
||||
public static String getURL(CryptoNet crypto, int index){
|
||||
if(TestedURLs.containsKey(crypto) && TestedURLs.get(crypto).size()>index){
|
||||
System.out.println("Servers url list " + Arrays.toString(TestedURLs.get(crypto).toArray()));
|
||||
return TestedURLs.get(crypto).get(index).getUrl();
|
||||
}
|
||||
System.out.println("Servers " + crypto.getLabel()+" dioesn't have testedurl");
|
||||
|
||||
if(CryptoNetURLs.containsKey(crypto) && !CryptoNetURLs.get(crypto).isEmpty()){
|
||||
return CryptoNetURLs.get(crypto).iterator().next();
|
||||
|
|
Loading…
Reference in a new issue