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();