Remove dead code

This commit is contained in:
Audrius Butkevicius
2015-10-25 20:46:09 +00:00
parent f629a998a0
commit 5b03c2d949
7 changed files with 2 additions and 70 deletions

View File

@@ -22,11 +22,3 @@ func init() {
l.SetDebug("main", strings.Contains(os.Getenv("STTRACE"), "main") || os.Getenv("STTRACE") == "all")
l.SetDebug("http", strings.Contains(os.Getenv("STTRACE"), "http") || os.Getenv("STTRACE") == "all")
}
func shouldDebugMain() bool {
return l.ShouldDebug("main")
}
func shouldDebugHTTP() bool {
return l.ShouldDebug("http")
}