26 lines
295 B
Go
26 lines
295 B
Go
package valiwork
|
|
|
|
import (
|
|
// stdlib
|
|
"os"
|
|
"strconv"
|
|
)
|
|
|
|
var (
|
|
DEBUG bool
|
|
)
|
|
|
|
// Initializes debug output.
|
|
// nolint
|
|
func init() {
|
|
debug, found := os.LookupEnv("VALIWORK_DEBUG")
|
|
if found {
|
|
debugBool, err := strconv.ParseBool(debug)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
DEBUG = debugBool
|
|
}
|
|
}
|