mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 14:56:29 +00:00
ui: Simplify ReportTotal methods
This commit is contained in:
parent
448419990c
commit
80cbaf6d38
@ -151,13 +151,11 @@ func (b *Backup) CompleteItem(messageType, item string, previous, current *resti
|
||||
|
||||
// ReportTotal sets the total stats up to now
|
||||
func (b *Backup) ReportTotal(item string, start time.Time, s archiver.ScanStats) {
|
||||
if item == "" {
|
||||
b.V("scan finished in %.3fs: %v files, %s",
|
||||
time.Since(start).Seconds(),
|
||||
s.Files, formatBytes(s.Bytes),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
// Reset status
|
||||
func (b *Backup) Reset() {
|
||||
|
@ -157,7 +157,6 @@ func (b *Backup) CompleteItem(messageType, item string, previous, current *resti
|
||||
|
||||
// ReportTotal sets the total stats up to now
|
||||
func (b *Backup) ReportTotal(item string, start time.Time, s archiver.ScanStats) {
|
||||
if item == "" {
|
||||
if b.v >= 2 {
|
||||
b.print(verboseUpdate{
|
||||
MessageType: "status",
|
||||
@ -167,8 +166,6 @@ func (b *Backup) ReportTotal(item string, start time.Time, s archiver.ScanStats)
|
||||
TotalFiles: s.Files,
|
||||
})
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
// Finish prints the finishing messages.
|
||||
|
Loading…
Reference in New Issue
Block a user