(ctx, param, value)
| 66 | configure_logging(level=param.name) |
| 67 | |
| 68 | def enable_loglevel(ctx, param, value): |
| 69 | if value and not ctx.resilient_parsing: |
| 70 | configure_logging(level=value) |
| 71 | |
| 72 | def show_platform(ctx, param, value): |
| 73 | if value and not ctx.resilient_parsing: |
nothing calls this directly
no test coverage detected