Unverified Commit afb907b4 authored by tswstarplanet's avatar tswstarplanet Committed by GitHub
Browse files

fix unequal number of arguments and placeholder (#2149)

parent e3065dbf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ public class MailUtils {
     * @param e the exception
     */
    private static void handleException(Collection<String> receivers, Map<String, Object> retMap, Exception e) {
        logger.error("Send email to {} failed {}", receivers, e);
        logger.error("Send email to {} failed", receivers, e);
        retMap.put(Constants.MESSAGE, "Send email to {" + String.join(",", receivers) + "} failed," + e.toString());
    }