You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sink::set_level() expects a level argument.
Currently the levels are defined using #define and a normal enumeration.
A better way would be to use an enum class for type safety. in that case a user can't input random numbers into the function and gets more verbose help from his IDE.