Skip to content

main: make console_subscriber optional #47

main: make console_subscriber optional

main: make console_subscriber optional #47

Triggered via push June 4, 2025 08:14
Status Success
Total duration 3m 4s
Artifacts

cargo.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

13 warnings
variables can be used directly in the `format!` string: src/main.rs#L438
warning: variables can be used directly in the `format!` string --> src/main.rs:438:17 | 438 | log::info!("Got unhandled Error: {:?}, continuing", e); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 438 - log::info!("Got unhandled Error: {:?}, continuing", e); 438 + log::info!("Got unhandled Error: {e:?}, continuing"); |
variables can be used directly in the `format!` string: src/main.rs#L430
warning: variables can be used directly in the `format!` string --> src/main.rs:430:25 | 430 | log::info!("TsunaLoopError {}, continuing", e); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 430 - log::info!("TsunaLoopError {}, continuing", e); 430 + log::info!("TsunaLoopError {e}, continuing"); |
variables can be used directly in the `format!` string: src/main.rs#L419
warning: variables can be used directly in the `format!` string --> src/main.rs:419:17 | 419 | log::info!("Got IO Error {}, sleeping", e); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 419 - log::info!("Got IO Error {}, sleeping", e); 419 + log::info!("Got IO Error {e}, sleeping"); |
variables can be used directly in the `format!` string: src/main.rs#L378
warning: variables can be used directly in the `format!` string --> src/main.rs:378:13 | 378 | log::debug!("Received: {}", text); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 378 - log::debug!("Received: {}", text); 378 + log::debug!("Received: {text}"); |
variables can be used directly in the `format!` string: src/main.rs#L173
warning: variables can be used directly in the `format!` string --> src/main.rs:173:9 | 173 | log::debug!("Sending request: {:?}", req); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[warn(clippy::uninlined_format_args)]` on by default help: change this to | 173 - log::debug!("Sending request: {:?}", req); 173 + log::debug!("Sending request: {req:?}"); |
Clippy Check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy Check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy Check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy Check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Cargo build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Cargo build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Cargo build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Cargo build
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/