4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-06 00:14:07 +00:00

Add sshchat dependencies in vendor

This commit is contained in:
Wim
2017-12-03 01:24:05 +01:00
parent 59e55cfbd5
commit ed9118b346
287 changed files with 73450 additions and 25571 deletions

22
vendor/github.com/shazow/ssh-chat/sshd/logger.go generated vendored Normal file
View File

@ -0,0 +1,22 @@
package sshd
import "io"
import stdlog "log"
var logger *stdlog.Logger
func SetLogger(w io.Writer) {
flags := stdlog.Flags()
prefix := "[sshd] "
logger = stdlog.New(w, prefix, flags)
}
type nullWriter struct{}
func (nullWriter) Write(data []byte) (int, error) {
return len(data), nil
}
func init() {
SetLogger(nullWriter{})
}