* @brief Logger struct for logging messages. * stream: The stream to log to. * level: The log level to log messages at. */
| 25 | * level: The log level to log messages at. |
| 26 | */ |
| 27 | struct Logger |
| 28 | { |
| 29 | std::ostream &stream; |
| 30 | int level; |
| 31 | }; |
| 32 | |
| 33 | template <typename T> |
| 34 | inline std::string toString(const T &value) |
nothing calls this directly
no outgoing calls
no test coverage detected