diff options
| author | Andrew Gallant (Ocelot) <[email protected]> | 2012-05-16 23:26:19 -0400 |
|---|---|---|
| committer | Andrew Gallant (Ocelot) <[email protected]> | 2012-05-16 23:26:19 -0400 |
| commit | f4ec34d9d9e2e185b1104a5228c582d11560f6f1 (patch) | |
| tree | 547bfcd7482b4d6ae5fbb206f50e8b5cbe8e53c3 /conn.go | |
| parent | ad4813394baf5970742ed0ee1e17e7daa01496db (diff) | |
export logger so it can be disabled
Diffstat (limited to 'conn.go')
| -rw-r--r-- | conn.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,8 +33,8 @@ func (c *Conn) connect(display string) error { authName, authData, err := readAuthority(c.host, c.display) noauth := false if err != nil { - logger.Printf("Could not get authority info: %v", err) - logger.Println("Trying connection without authority info...") + Logger.Printf("Could not get authority info: %v", err) + Logger.Println("Trying connection without authority info...") authName = "" authData = []byte{} noauth = true |
