mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
16 lines
380 B
Go
16 lines
380 B
Go
// +build !debug0,!debug
|
|
|
|
package pdebug
|
|
|
|
const Enabled = false
|
|
const Trace = false
|
|
|
|
type nullMGuard struct {}
|
|
|
|
func (g nullMGuard) BindError(_ *error) MarkerGuard { return g }
|
|
func (_ nullMGuard) End() {}
|
|
|
|
func FuncMarker() MarkerGuard { return nullMGuard{} }
|
|
func Marker(_ string, _ ...interface{}) MarkerGuard { return nullMGuard{} }
|
|
func Printf(_ string, _ ...interface{}) {}
|