From 6255006e46ce250b14814e1d666c8ed1c6d889cc Mon Sep 17 00:00:00 2001 From: Matteo Morena <8678043+xmamo@users.noreply.github.com> Date: Mon, 16 May 2016 14:58:19 +0200 Subject: [PATCH] Hotfix --- pom.xml | 2 +- .../vanillaVotifier/impl/VanillaVotifierServerListener.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 49931df..dffac8e 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ this program. If not, see . 4.0.0 co.virtualdragon VanillaVotifier - 3.3.4 + 3.4.0 VanillaVotifier jar diff --git a/src/main/java/co/virtualdragon/vanillaVotifier/impl/VanillaVotifierServerListener.java b/src/main/java/co/virtualdragon/vanillaVotifier/impl/VanillaVotifierServerListener.java index 5067ff3..c2185bb 100644 --- a/src/main/java/co/virtualdragon/vanillaVotifier/impl/VanillaVotifierServerListener.java +++ b/src/main/java/co/virtualdragon/vanillaVotifier/impl/VanillaVotifierServerListener.java @@ -123,7 +123,7 @@ public void onEvent(Event event, Votifier votifier) { } if (event instanceof ExceptionEvent && votifier.areExceptionsReported()) { - votifier.getLogger().print(((ExceptionEvent) event).getException()); + votifier.getLogger().println(((ExceptionEvent) event).getException()); } } }