@brief Detach a still attached stream from logger */
| 79 | |
| 80 | /** @brief Detach a still attached stream from logger */ |
| 81 | bool attachStream(LogStream *pStream, unsigned int severity) { |
| 82 | (void)pStream; (void)severity; //this avoids compiler warnings |
| 83 | return false; |
| 84 | } |
| 85 | |
| 86 | /** @brief Detach a still attached stream from logger */ |
| 87 | bool detatchStream(LogStream *pStream, unsigned int severity) { |
nothing calls this directly
no outgoing calls
no test coverage detected