diff options
Diffstat (limited to 'internal/server')
| -rw-r--r-- | internal/server/instituteaccess.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/server/instituteaccess.go b/internal/server/instituteaccess.go index a51409f..ebafb26 100644 --- a/internal/server/instituteaccess.go +++ b/internal/server/instituteaccess.go @@ -26,14 +26,14 @@ func (ss *Servers) SetInstituteAccess(srv Server) error { } if b.Type != "institute_access" { - return errors.Errorf("not an institute access server, url: %s, type: %s", b.URL, b.Type) + return errors.Errorf("not an institute access server, URL: %s, type: %s", b.URL, b.Type) } if _, ok := ss.InstituteServers.Map[b.URL]; ok { ss.InstituteServers.CurrentURL = b.URL ss.IsType = InstituteAccessServerType } else { - return errors.Errorf("institute access server with url: %s, is not yet configured", b.URL) + return errors.Errorf("institute access server with URL: %s, is not yet configured", b.URL) } return nil } |
