mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-15 22:30:30 +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
|
||
|
}
|