From 5ec1d0e9b9921c06c4539220eef5a0f223f8a8cc Mon Sep 17 00:00:00 2001 From: Ana Hobden Date: Mon, 3 Apr 2023 09:19:28 -0700 Subject: [PATCH] Fixup create_volume_service action tag (#398) --- src/action/macos/create_volume_service.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/action/macos/create_volume_service.rs b/src/action/macos/create_volume_service.rs index 7687e38..d22c157 100644 --- a/src/action/macos/create_volume_service.rs +++ b/src/action/macos/create_volume_service.rs @@ -78,7 +78,7 @@ impl CreateVolumeService { #[typetag::serde(name = "create_volume_service")] impl Action for CreateVolumeService { fn action_tag() -> ActionTag { - ActionTag("setup_volume_daemon") + ActionTag("create_volume_service") } fn tracing_synopsis(&self) -> String { format!( @@ -90,7 +90,7 @@ impl Action for CreateVolumeService { fn tracing_span(&self) -> Span { let span = span!( tracing::Level::DEBUG, - "setup_volume_daemon", + "create_volume_service", path = tracing::field::display(self.path.display()), buf = tracing::field::Empty, );