Fixup create_volume_service action tag (#398)
This commit is contained in:
parent
a10261e882
commit
5ec1d0e9b9
|
@ -78,7 +78,7 @@ impl CreateVolumeService {
|
||||||
#[typetag::serde(name = "create_volume_service")]
|
#[typetag::serde(name = "create_volume_service")]
|
||||||
impl Action for CreateVolumeService {
|
impl Action for CreateVolumeService {
|
||||||
fn action_tag() -> ActionTag {
|
fn action_tag() -> ActionTag {
|
||||||
ActionTag("setup_volume_daemon")
|
ActionTag("create_volume_service")
|
||||||
}
|
}
|
||||||
fn tracing_synopsis(&self) -> String {
|
fn tracing_synopsis(&self) -> String {
|
||||||
format!(
|
format!(
|
||||||
|
@ -90,7 +90,7 @@ impl Action for CreateVolumeService {
|
||||||
fn tracing_span(&self) -> Span {
|
fn tracing_span(&self) -> Span {
|
||||||
let span = span!(
|
let span = span!(
|
||||||
tracing::Level::DEBUG,
|
tracing::Level::DEBUG,
|
||||||
"setup_volume_daemon",
|
"create_volume_service",
|
||||||
path = tracing::field::display(self.path.display()),
|
path = tracing::field::display(self.path.display()),
|
||||||
buf = tracing::field::Empty,
|
buf = tracing::field::Empty,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue