1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright (c) 2021 Silvano DAL ZILIO // // MIT License // +build debug package rudd import ( "log" "os" ) const _DEBUG bool = true const _LOGLEVEL int = 1 func init() { log.SetOutput(os.Stdout) }