codes: improve app and update status error messages
This commit is contained in:
parent
afab572db3
commit
5a03e1d183
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue