Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Fix reuse of change addresses #113

Merged
merged 3 commits into from May 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/main/java/bisq/core/setup/CoreSetup.java
Expand Up @@ -27,6 +27,8 @@
import bisq.common.app.Version;
import bisq.common.util.Utilities;

import java.net.URISyntaxException;

import java.nio.file.Paths;

import ch.qos.logback.classic.Level;
Expand All @@ -45,6 +47,15 @@ public static void setup(BisqEnvironment bisqEnvironment) {

Version.setBaseCryptoNetworkId(BisqEnvironment.getBaseCurrencyNetwork().ordinal());
Version.printVersion();

try {
final String pathOfCodeSource = Utilities.getPathOfCodeSource();
if (!pathOfCodeSource.endsWith("classes"))
log.info("Path to Bisq jar file: " + pathOfCodeSource);
} catch (URISyntaxException e) {
log.error(e.toString());
e.printStackTrace();
}
}

private static void setupLog(BisqEnvironment bisqEnvironment) {
Expand Down