diff --git a/src/plugins/table_access.rs b/src/plugins/table_access.rs index 3549ce0..641e740 100644 --- a/src/plugins/table_access.rs +++ b/src/plugins/table_access.rs @@ -45,11 +45,10 @@ impl<'a> Plugin for TableAccess<'a> { }); if let Some(found) = found { - debug!("Blocking access to table \"{}\"", found); + debug!("Blocking access to table \"{found}\""); Ok(PluginOutput::Deny(format!( - "permission for table \"{}\" denied", - found + "permission for table \"{found}\" denied", ))) } else { Ok(PluginOutput::Allow)