summaryrefslogtreecommitdiff
path: root/client/fsm.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/fsm.go')
-rw-r--r--client/fsm.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/fsm.go b/client/fsm.go
index c156fba..76dee05 100644
--- a/client/fsm.go
+++ b/client/fsm.go
@@ -212,7 +212,7 @@ func (c *Client) SetSearchServer() error {
return err
}
- // TODO(jwijenbergh): Should we handle `false` returned value here?
+ //TODO(jwijenbergh): Should we handle `false` returned value here?
c.FSM.GoTransition(StateSearchServer)
return nil
}
@@ -325,7 +325,7 @@ func (c *Client) SetDisconnected(cleanup bool) error {
func (c *Client) goBackInternal() {
err := c.GoBack()
if err != nil {
- // TODO(jwijenbergh): Bit suspicious - logging level INFO, yet stacktrace logged.
+ //TODO(jwijenbergh): Bit suspicious - logging level INFO, yet stacktrace logged.
c.Logger.Infof("failed going back: %s\nstacktrace:\n%s", err.Error(), err.(*errors.Error).ErrorStack())
}
}