@RequestMapping(value = "/api/todo/{id}", method = RequestMethod.GET)
  @ResponseBody
  public TodoDTO findById(@PathVariable("id") Long id) throws TodoNotFoundException {
    LOGGER.debug("Finding to-do entry with id: {}", id);

    Todo found = service.findById(id);
    LOGGER.debug("Found to-do entry with information: {}", found);

    return createDTO(found);
  }