A logger that prints logs in the format expected by GitHub Actions, with grouping support. See https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions
| 10 | /// |
| 11 | /// See https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions |
| 12 | pub struct GithubActionLogger { |
| 13 | log_level: LevelFilter, |
| 14 | } |
| 15 | |
| 16 | impl GithubActionLogger { |
| 17 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected