Return true if log accepts specified category */
| 244 | |
| 245 | /** Return true if log accepts specified category */ |
| 246 | static inline bool LogAcceptCategory(BCLog::LogFlags category) |
| 247 | { |
| 248 | return LogInstance().WillLogCategory(category); |
| 249 | } |
| 250 | |
| 251 | /** Return true if str parses as a log category and set the flag */ |
| 252 | bool GetLogCategory(BCLog::LogFlags& flag, const std::string& str); |
no test coverage detected