Refactor debug into debug module

This commit is contained in:
Alexander Neumann
2015-01-14 22:08:48 +01:00
parent bcb19c811b
commit 25a214809b
18 changed files with 318 additions and 238 deletions

7
debug/debug_release.go Normal file
View File

@@ -0,0 +1,7 @@
// +build !debug
package debug
func Log(tag string, fmt string, args ...interface{}) {}
func Break(string) {}