diff --git a/appointment-import/src/main/java/smash/appointment/parse/AppointmentType.java b/appointment-import/src/main/java/smash/appointment/parse/AppointmentType.java
index acbe989a739b501b7d496f8f8997a0b60b5e7ea0..9660b8e6ab7a6d3f76052214b329eb66336cf842 100644
--- a/appointment-import/src/main/java/smash/appointment/parse/AppointmentType.java
+++ b/appointment-import/src/main/java/smash/appointment/parse/AppointmentType.java
@@ -3,7 +3,7 @@ package smash.appointment.parse;
 public enum AppointmentType {
 	
 	//most complex should be first
-	LEVEL_BV_BG_SB_MPOWER(new String[] {"BV + BG + SB + mPower"}), //
+	LEVEL_BV_BG_SB_MPOWER(new String[] {"evel BV + BG + SB + mPower", "BV + BG + SB + mPower"}), //
 	LEVEL_BV_BG_SB(new String[] { "evel BV + BG + SB","BV + BG + SB" }), // 
 	LEVEL_BV_SB(new String[] { "evel BV + SB","BV + SB" }), //
 	LEVEL_BV_BG(new String[] { "evel BV + BG","BV + BG" }), //
diff --git a/appointment-import/src/main/java/smash/appointment/parse/CellParser.java b/appointment-import/src/main/java/smash/appointment/parse/CellParser.java
index 1cea58122e0c00a2f5502d6381a12682c73df461..3c507c4d9a40897039b835ebf0f7c5f42049ac14 100644
--- a/appointment-import/src/main/java/smash/appointment/parse/CellParser.java
+++ b/appointment-import/src/main/java/smash/appointment/parse/CellParser.java
@@ -78,7 +78,6 @@ public class CellParser {
 								//new one is a substring of old
 							} else { //if there is no substring then we might have a problem
 								AppointmentType newType = result;
-								logger.warn(string+ "  ----- "+usedString);
 								if (usedString.length() < string.length()) {
 									usedString = string;
 									newType = type;