summaryrefslogtreecommitdiff
path: root/client/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/server.go')
-rw-r--r--client/server.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/server.go b/client/server.go
index fe4c57d..55a3b9e 100644
--- a/client/server.go
+++ b/client/server.go
@@ -497,8 +497,8 @@ func (c *Client) askSecureLocation() error {
// The state has changed, meaning setting the secure location was not successful
if c.FSM.Current != StateAskLocation {
- return errors.Errorf("fsm failed to transit; expected %v / actual %v",
- StateAskLocation, c.FSM.Current)
+ log.Logger.Debugf("fsm failed to transit; expected %v / actual %v", GetStateName(StateAskLocation), GetStateName(c.FSM.Current))
+ return errors.New("failed loading secure internet location")
}
return nil
}