* Set the private log context level */
| 77 | * Set the private log context level |
| 78 | */ |
| 79 | SRD_API void srd_log_level(int level) |
| 80 | { |
| 81 | log_level_value = level; |
| 82 | if (log_ctx) |
| 83 | { |
| 84 | xlog_set_level(log_ctx, level); |
| 85 | } |
| 86 | } |
nothing calls this directly
no test coverage detected