cros_async: remove debug prints.

It looks like some debug code we introduced when adding executor type
selection might've stuck around in the tree. Let's remove it.

BUG=NONE
TEST=builds

Change-Id: I83fd648104d0052048f00444acd1a98acd8eb93b
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5981506
Commit-Queue: Noah Gold <nkgold@google.com>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Noah Gold 2024-10-31 01:58:46 +00:00 committed by crosvm LUCI
parent d49f618c91
commit fc8a9dd071

View file

@ -142,7 +142,6 @@ impl<'de> Deserialize<'de> for ExecutorKind {
where
D: serde::Deserializer<'de>,
{
base::error!("ExecutorKind::deserialize");
let string = String::deserialize(deserializer)?;
ExecutorKind::from_arg_value(&string).map_err(serde::de::Error::custom)
}