* @param date
* Date in long format
* @return String representation of <code>date</code>
*/
private String dateFormatter(final long date) {
final SimpleDateFormat sdf =
new SimpleDateFormat(SimpleDateFormat.TIME_LONG);
final Date d = new Date(date);
final Calendar cal = Calendar.getInstance();
cal.setTime(d);
final StringBuffer buff = new StringBuffer();
buff.append('[');
buff.append(cal.get(Calendar.DAY_OF_MONTH));
buff.append('-');
buff.append(sdf.format(cal, new StringBuffer(), null).toString());
buff.append("] ");
return buff.toString();
}