std::string attempt()

in spectator/log_entry.h [52:65]


  std::string attempt(int attempt_number) {
    static std::string initial = "initial";
    static std::string second = "second";
    static std::string third_up = "third_up";

    switch (attempt_number) {
      case 0:
        return initial;
      case 1:
        return second;
      default:
        return third_up;
    }
  }