File: logger.go

package info (click to toggle)
golang-github-weaveworks-mesh 0%2Bgit20161024.3dd75b1-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 412 kB
  • sloc: sh: 59; makefile: 7
file content (6 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
package mesh

// Logger is a simple interface used by mesh to do logging.
type Logger interface {
	Printf(format string, args ...interface{})
}