I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit d40f806b authored by str4d's avatar str4d
Browse files

Use Util.e()

parent bf5b29da
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ package net.i2p.android.router.activity;
import net.i2p.android.router.R;
import net.i2p.android.router.fragment.NetDbDetailFragment;
import net.i2p.android.router.service.RouterService;
import net.i2p.android.router.util.Util;
import net.i2p.data.DataFormatException;
import net.i2p.data.Hash;
import android.os.Bundle;
......@@ -24,7 +25,7 @@ public class NetDbDetailActivity extends I2PActivityBase {
getSupportFragmentManager().beginTransaction()
.add(R.id.main_fragment, mDetailFrag).commit();
} catch (DataFormatException e) {
e.printStackTrace();
Util.e(e.toString());
}
}
}
......
......@@ -2,6 +2,7 @@ package net.i2p.android.router.fragment;
import net.i2p.android.router.R;
import net.i2p.android.router.loader.NetDbEntry;
import net.i2p.android.router.util.Util;
import net.i2p.data.DataFormatException;
import net.i2p.data.Hash;
import net.i2p.data.LeaseSet;
......@@ -72,7 +73,7 @@ public class NetDbDetailFragment extends I2PFragmentBase {
TextView entryHash = (TextView) getView().findViewById(R.id.dbentry_hash);
entryHash.setText(hash.toBase64());
} catch (DataFormatException e) {
e.printStackTrace();
Util.e(e.toString());
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment