go.mobile/app: do not log info android logcat already includes

i.e. all of log.LstdFlags

LGTM=hyangah
R=golang-codereviews, hyangah
CC=golang-codereviews
https://golang.org/cl/138310043
This commit is contained in:
David Crawshaw 2014-10-23 09:55:09 -04:00
Родитель 479974ec25
Коммит 85b2f78310
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -58,6 +58,8 @@ func lineLog(f *os.File, priority C.int) {
func init() {
log.SetOutput(infoWriter{})
// android logcat includes all of log.LstdFlags
log.SetFlags(log.Flags() &^ log.LstdFlags)
r, w, err := os.Pipe()
if err != nil {