for (Entry<Object, Object> entry : entrySet) {
sb.append(String.format("%-50s %s\n", entry.getKey(), entry.getValue()));
}
sb.append(String.format("%-50s %s\n", "Charset.defaultCharset()", Charset.defaultCharset()));
return new InputStreamDownload(new ByteArrayInputStream(sb.toString().getBytes()), "text/plain", "log.log");
}