@brief Removes logging flag used internally.
| 3875 | } |
| 3876 | /// @brief Removes logging flag used internally. |
| 3877 | static inline void removeFlag(LoggingFlag flag) { |
| 3878 | ELPP->removeFlag(flag); |
| 3879 | } |
| 3880 | /// @brief Determines whether or not certain flag is active |
| 3881 | static inline bool hasFlag(LoggingFlag flag) { |
| 3882 | return ELPP->hasFlag(flag); |
nothing calls this directly
no test coverage detected