File: debug.go

package info (click to toggle)
golang-github-go-chef-chef 0.0.1%2Bgit20161023.60.deb8c38-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 332 kB
  • ctags: 290
  • sloc: sh: 14; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 119 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
// +build debug

package chef

import "log"

func debug(fmt string, args ...interface{}) {
	log.Printf(fmt, args...)
}