mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2024-12-03 06:55:33 +00:00
13 lines
187 B
Go
13 lines
187 B
Go
// +build android
|
|
|
|
package yggdrasil
|
|
|
|
import "log"
|
|
|
|
type MobileLogger struct{}
|
|
|
|
func (nsl MobileLogger) Write(p []byte) (n int, err error) {
|
|
log.Println(string(p))
|
|
return len(p), nil
|
|
}
|