Codebase list golang-github-miekg-mmark / 9cd65370-f891-4c35-bf58-69bd195ed634/upstream/1.3.6+git20180823.1.4a11391+dfsg log.go
9cd65370-f891-4c35-bf58-69bd195ed634/upstream/1.3.6+git20180823.1.4a11391+dfsg

Tree @9cd65370-f891-4c35-bf58-69bd195ed634/upstream/1.3.6+git20180823.1.4a11391+dfsg (Download .tar.gz)

log.go @9cd65370-f891-4c35-bf58-69bd195ed634/upstream/1.3.6+git20180823.1.4a11391+dfsgraw · history · blame

package mmark

import "log"

func printf(p *parser, format string, v ...interface{}) {
	if test {
		return
	}
	if p != nil {
		log.Printf("mmark: "+format, v...)
		return
	}
	log.Printf("mmark: "+format, v...)
}