Returns a string with the log categories in alphabetical order. */
| 232 | std::vector<LogCategory> LogCategoriesList() const; |
| 233 | /** Returns a string with the log categories in alphabetical order. */ |
| 234 | std::string LogCategoriesString() const |
| 235 | { |
| 236 | return Join(LogCategoriesList(), ", ", [&](const LogCategory& i) { return i.category; }); |
| 237 | }; |
| 238 | |
| 239 | bool DefaultShrinkDebugFile() const; |
| 240 | }; |