mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
10 lines
243 B
Go
10 lines
243 B
Go
// +build !debug
|
|
|
|
package debug
|
|
|
|
// Log only logs when the debug build flag is present.
|
|
func Log(data string) {}
|
|
|
|
// Logf only logs with a formatted string when the debug build flag is present.
|
|
func Logf(format string, args ...interface{}) {}
|