codes: improve app and update status error messages

This commit is contained in:
Michael Marineau 2017-05-18 12:53:35 -07:00
parent afab572db3
commit 5a03e1d183
1 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ const (
// Make AppStatus easy to use as an error
func (a AppStatus) Error() string {
return string(a)
return "omaha: app status " + string(a)
}
type UpdateStatus string
@ -177,5 +177,5 @@ const (
// Make UpdateStatus easy to use as an error
func (u UpdateStatus) Error() string {
return string(u)
return "omaha: update status " + string(u)
}