Skip to content

Commit

Permalink
SM-1174: Update Error to Warning for failed state file retrieval.
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonhurst committed Aug 8, 2024
1 parent 14b9944 commit b5961a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bws/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async fn process_commands() -> Result<()> {
) {
Ok(state_file) => Some(state_file),
Err(e) => {
eprintln!("Error: {}\nAttempting to continue without using state. Please set \"state_dir\" in your config file to avoid authentication limits.", e);
eprintln!("Warning: {}\nRetrieving the state file failed. Attempting to continue without using state. Please set \"state_dir\" in your config file to avoid authentication limits.", e);
None

Check warning on line 98 in crates/bws/src/main.rs

View check run for this annotation

Codecov / codecov/patch

crates/bws/src/main.rs#L89-L98

Added lines #L89 - L98 were not covered by tests
}
},
Expand Down

0 comments on commit b5961a5

Please sign in to comment.