``log_to_stderr`` redirects minimum log level to standard error. :param enums.LogLevel min_level: minimum level to log to :rtype: None
(min_level: LogLevel)
| 167 | |
| 168 | |
| 169 | def log_to_stderr(min_level: LogLevel): |
| 170 | """ |
| 171 | ``log_to_stderr`` redirects minimum log level to standard error. |
| 172 | |
| 173 | :param enums.LogLevel min_level: minimum level to log to |
| 174 | :rtype: None |
| 175 | """ |
| 176 | core.BNLogToStderr(min_level) |
| 177 | |
| 178 | |
| 179 | def log_to_file(min_level: LogLevel, path: str, append: bool=False): |
no outgoing calls
no test coverage detected