From c11977dce4a5c83cd3af01715bfbd84e9269215b Mon Sep 17 00:00:00 2001 From: tilman Date: Thu, 19 Jul 2012 18:20:16 +0200 Subject: [PATCH] mc --- WebCallerID/pom.xml | 2 +- .../src/main/java/de/tilman/callerId/CallerIdClient.java | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/WebCallerID/pom.xml b/WebCallerID/pom.xml index be02571..622b655 100755 --- a/WebCallerID/pom.xml +++ b/WebCallerID/pom.xml @@ -3,7 +3,7 @@ 4.0.0 WebCallerID WebCallerID - 1.0.1 + 1.0.2 log4j diff --git a/WebCallerID/src/main/java/de/tilman/callerId/CallerIdClient.java b/WebCallerID/src/main/java/de/tilman/callerId/CallerIdClient.java index cc51014..686f126 100755 --- a/WebCallerID/src/main/java/de/tilman/callerId/CallerIdClient.java +++ b/WebCallerID/src/main/java/de/tilman/callerId/CallerIdClient.java @@ -178,7 +178,6 @@ public class CallerIdClient { } private void sendNotification(String time, String number) throws Exception { - log.info("Sende Nachricht: " + "Anruf von " + number + "\n" + time); if (number.equals(" ")) number = TEXT_UNKNOWN; @@ -205,7 +204,6 @@ public class CallerIdClient { for (int i = 0; i < to.length; i++) { toAddress[i] = new InternetAddress(to[i]); } - System.out.println(Message.RecipientType.TO); for (int i = 0; i < toAddress.length; i++) { message.addRecipient(Message.RecipientType.TO, toAddress[i]); @@ -224,7 +222,7 @@ public class CallerIdClient { public static void main(String[] args) { BasicConfigurator.configure(new ConsoleAppender(new PatternLayout("%d{ISO8601} - %m%n"))); - log.info("Starting CallerIdClient version 1.0.1"); + log.info("Starting CallerIdClient version 1.0.2"); JSAP jsap = new JSAP();