Skip to content

Commit

Permalink
update env-logger
Browse files Browse the repository at this point in the history
  • Loading branch information
aknarts committed Feb 19, 2024
1 parent 66d5ed1 commit ce4d7c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ chrono = "0.4"
diesel = { version = "2", features = ["sqlite", "r2d2"] }
diesel_migrations = { version = "2", features = ["sqlite"] }
egs-api = "0.6"
env_logger = "0.10.0"
env_logger = "0.11"
fs2 = "0.4.3"
gtk4 = { version = "0.7.2", features = ["v4_8"] }
gtk-macros = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/tools/epic_web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ impl EpicWeb {
Ok(eula) => {
return match eula.data.eula.has_account_accepted {
None => {
eula.errors.map_or((), |errors| for error in errors {
let _ = eula.errors.map_or((), |errors| for error in errors {
error!("Failed to query EULA status: {} with response: {}", error.message, error.service_response);
});
false
Expand Down

0 comments on commit ce4d7c2

Please sign in to comment.