diff options
| author | Andrew Gallant <[email protected]> | 2013-08-22 19:30:46 -0700 |
|---|---|---|
| committer | Andrew Gallant <[email protected]> | 2013-08-22 19:30:46 -0700 |
| commit | d310a02534d5a8910b6b2b2cdba9e71420fb0762 (patch) | |
| tree | 8b29768f8dec371458ead98b1bd7f0d981adf9bc /conn.go | |
| parent | eb7c38953b074e33f86861a3da4c05623cd44fc6 (diff) | |
| parent | d9eaa7fc3887a20142a4b27eebe0ee9afbcc1a13 (diff) | |
Merge pull request #10 from Merovius/logging
Export the logger (again)
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 |
