BackupDir/BackupGroup: add ns to Debug impl
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
7784698948
commit
d22363ad08
|
@ -31,6 +31,7 @@ impl fmt::Debug for BackupGroup {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
f.debug_struct("BackupGroup")
|
f.debug_struct("BackupGroup")
|
||||||
.field("store", &self.store.name())
|
.field("store", &self.store.name())
|
||||||
|
.field("ns", &self.ns)
|
||||||
.field("group", &self.group)
|
.field("group", &self.group)
|
||||||
.finish()
|
.finish()
|
||||||
}
|
}
|
||||||
|
@ -293,6 +294,7 @@ impl fmt::Debug for BackupDir {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
f.debug_struct("BackupDir")
|
f.debug_struct("BackupDir")
|
||||||
.field("store", &self.store.name())
|
.field("store", &self.store.name())
|
||||||
|
.field("ns", &self.ns)
|
||||||
.field("dir", &self.dir)
|
.field("dir", &self.dir)
|
||||||
.field("backup_time_string", &self.backup_time_string)
|
.field("backup_time_string", &self.backup_time_string)
|
||||||
.finish()
|
.finish()
|
||||||
|
|
Loading…
Reference in New Issue