diff --git a/UserInfo.go b/UserInfo.go index a86187d..efdba5c 100644 --- a/UserInfo.go +++ b/UserInfo.go @@ -100,7 +100,6 @@ func maybeParse(str string, dest *uint64, default_val uint64) { } func (this *UserInfo) fromMyINFO(protomsg string) error { - fmt.Printf("PARSE: %s\n", protomsg) // Normal format (with tag in exact V/M/H/S order) matches := rx_myinfo.FindStringSubmatch(protomsg) @@ -123,8 +122,6 @@ func (this *UserInfo) fromMyINFO(protomsg string) error { this.Email = NMDCUnescape(matches[11]) maybeParse(matches[12], &this.ShareSize, 0) - fmt.Printf("PARSE: Success (full VMHS)\n") - return nil } @@ -150,8 +147,6 @@ func (this *UserInfo) fromMyINFO(protomsg string) error { this.Email = NMDCUnescape(matches[4]) maybeParse(matches[5], &this.ShareSize, 0) - fmt.Printf("PARSE: Partial/no tag\n") - return nil }