mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-04 15:08:59 +01:00
13 lines
193 B
Go
13 lines
193 B
Go
//go:build !ios
|
|
// +build !ios
|
|
|
|
package gobind
|
|
|
|
import "log"
|
|
|
|
type BindLogger struct{}
|
|
|
|
func (nsl BindLogger) Write(p []byte) (n int, err error) {
|
|
log.Println(string(p))
|
|
return len(p), nil
|
|
}
|