Skip to content

Instantly share code, notes, and snippets.

@spheromak
Last active August 29, 2015 14:07
Show Gist options
  • Save spheromak/dd5610c1be7f879baf16 to your computer and use it in GitHub Desktop.
Save spheromak/dd5610c1be7f879baf16 to your computer and use it in GitHub Desktop.
// +build debug
package chef
import "log"
func debug(fmt string, args ...interface{}) {
log.Printf(fmt, args...)
}
// +build !debug
package chef
func debug(fmt string, args ...interface{}) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment