private void loadImportantMessages(Model model) { try { model.addAttribute("importantMessages", messageService.getImportantMessages()); } catch (Exception e) { log.error("Unable to load important messages"); } }
private void loadMotd(Model model) { try { model.addAttribute("motd", messageService.getMotd()); } catch (Exception e) { log.error("Unable to load MOTD"); } }