//Find: logger.info(.+
//In the given box you need return the value which is going to be replaced in your file
String s =String.valueOf(match.group());
StringBuilder sb = new StringBuilder(s);
sb.delete(s.length()-3,s.length()-2);
return sb.toString();