| 189 | } |
| 190 | |
| 191 | void SetAllLoggingSinks(bool standardOut, bool debugOut, bool coloured) |
| 192 | { |
| 193 | SetLoggingSinks<LogSeverity::Trace>(standardOut, debugOut, coloured); |
| 194 | SetLoggingSinks<LogSeverity::Debug>(standardOut, debugOut, coloured); |
| 195 | SetLoggingSinks<LogSeverity::Info>(standardOut, debugOut, coloured); |
| 196 | SetLoggingSinks<LogSeverity::Warning>(standardOut, debugOut, coloured); |
| 197 | SetLoggingSinks<LogSeverity::Error>(standardOut, debugOut, coloured); |
| 198 | SetLoggingSinks<LogSeverity::Fatal>(standardOut, debugOut, coloured); |
| 199 | } |
| 200 | |
| 201 | } //namespace armnn |
no outgoing calls
no test coverage detected