| 198 | } |
| 199 | |
| 200 | static std::string stringListToString(const StringList &list) |
| 201 | { |
| 202 | if (list.empty()) { |
| 203 | return "[]"; |
| 204 | } |
| 205 | std::string result = "["; |
| 206 | for (const auto &string : list) { |
| 207 | result += std::string(string) + ", "; |
| 208 | } |
| 209 | result.pop_back(); |
| 210 | result.pop_back(); |
| 211 | return result + "]"; |
| 212 | } |
| 213 | |
| 214 | void MacroActionHttp::LogAction() const |
| 215 | { |