Skip to content

Commit

Permalink
Fix out of date rust fixtures
Browse files Browse the repository at this point in the history
Reviewed By: vitaut

Differential Revision: D60966762

fbshipit-source-id: bb81544dc7373a59c2891e3f091f1224819068fa
  • Loading branch information
Aristidis Papaioannou authored and facebook-github-bot committed Aug 8, 2024
1 parent 227f9bb commit db1d232
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6838,7 +6838,7 @@ where
::std::result::Result::Ok(res)
}
::std::result::Result::Ok(::std::result::Result::Err(exn)) => {
::tracing::info!(method = "MyInteraction.frobnicate", exception = ?exn);
::tracing::error!(method = "MyInteraction.frobnicate", exception = ?exn);
::std::result::Result::Err(exn)
}
::std::result::Result::Err(exn) => {
Expand Down Expand Up @@ -6899,7 +6899,7 @@ where
::std::result::Result::Ok(res)
}
::std::result::Result::Ok(::std::result::Result::Err(exn)) => {
::tracing::info!(method = "MyInteraction.ping", exception = ?exn);
::tracing::error!(method = "MyInteraction.ping", exception = ?exn);
::std::result::Result::Err(exn)
}
::std::result::Result::Err(exn) => {
Expand Down Expand Up @@ -7419,7 +7419,7 @@ where
::std::result::Result::Ok(res)
}
::std::result::Result::Ok(::std::result::Result::Err(exn)) => {
::tracing::info!(method = "SharedInteraction.init", exception = ?exn);
::tracing::error!(method = "SharedInteraction.init", exception = ?exn);
::std::result::Result::Err(exn)
}
::std::result::Result::Err(exn) => {
Expand Down Expand Up @@ -7480,7 +7480,7 @@ where
::std::result::Result::Ok(res)
}
::std::result::Result::Ok(::std::result::Result::Err(exn)) => {
::tracing::info!(method = "SharedInteraction.do_something", exception = ?exn);
::tracing::error!(method = "SharedInteraction.do_something", exception = ?exn);
::std::result::Result::Err(exn)
}
::std::result::Result::Err(exn) => {
Expand Down Expand Up @@ -7541,7 +7541,7 @@ where
::std::result::Result::Ok(res)
}
::std::result::Result::Ok(::std::result::Result::Err(exn)) => {
::tracing::info!(method = "SharedInteraction.tear_down", exception = ?exn);
::tracing::error!(method = "SharedInteraction.tear_down", exception = ?exn);
::std::result::Result::Err(exn)
}
::std::result::Result::Err(exn) => {
Expand Down Expand Up @@ -7896,7 +7896,7 @@ where
::std::result::Result::Ok(res)
}
::std::result::Result::Ok(::std::result::Result::Err(exn)) => {
::tracing::info!(method = "InteractWithShared.do_some_similar_things", exception = ?exn);
::tracing::error!(method = "InteractWithShared.do_some_similar_things", exception = ?exn);
::std::result::Result::Err(exn)
}
::std::result::Result::Err(exn) => {
Expand Down

0 comments on commit db1d232

Please sign in to comment.