Make logs follow a more consistent format

This commit is contained in:
Matthew Penner
2020-12-27 13:01:34 -07:00
parent 640e30de8a
commit de4d2f4724
4 changed files with 10 additions and 10 deletions

View File

@@ -53,11 +53,11 @@ func (b *LocalBackup) Generate(basePath, ignore string) (*ArchiveDetails, error)
"adapter": "local",
})
l.Info("attempting to create backup..")
l.Info("creating backup for server...")
if err := a.Create(b.Path()); err != nil {
return nil, err
}
l.Info("created backup successfully.")
l.Info("created backup successfully")
return b.Details(), nil
}