RC version 0.3.1

This commit is contained in:
Manfred Karrer 2015-11-18 17:32:02 +01:00
parent b235beb56b
commit 5b4a360b26
16 changed files with 29 additions and 17 deletions

View file

@ -73,7 +73,7 @@ import static io.bitsquare.app.BitsquareEnvironment.APP_NAME_KEY;
public class BitsquareApp extends Application {
private static final Logger log = (ch.qos.logback.classic.Logger) LoggerFactory.getLogger(BitsquareApp.class);
public static final boolean DEV_MODE = true;
public static final boolean DEV_MODE = false;
public static final boolean IS_RELEASE_VERSION = !DEV_MODE && true;
private static Environment env;
@ -102,6 +102,8 @@ public class BitsquareApp extends Application {
Log.setup(logPath, IS_RELEASE_VERSION);
log.info("Log files under: " + logPath);
Version.printVersion();
UserThread.setExecutor(Platform::runLater);
// setup UncaughtExceptionHandler

View file

@ -2,7 +2,7 @@
<configuration>
<appender name="CONSOLE_APPENDER" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%highlight(%d{MMM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{15} - %msg %xEx%n)</pattern>
<pattern>%highlight(%d{MMM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{15}: %msg %xEx%n)</pattern>
</encoder>
</appender>