List<String> recentLogs() { final List<String> logs = []; for (final e in _recentEvents) { logs.add(e.logFmt()); } return logs; }