summaryrefslogtreecommitdiff
path: root/constants/constants.go
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-05-04 17:51:50 -0400
committerWill Hawkins <[email protected]>2022-05-04 17:51:50 -0400
commit10ddc4e9c56beeb5718cd878313ddf88695a1948 (patch)
tree284c151bae39d24b5fb613dddd858340d8f82bcf /constants/constants.go
parentfa647c6645f74e3c0e6fded658f5f8b5882b0e01 (diff)
Make Traceable Interface and Refactor Debugging
1. Make a traceable interface for all things that can be wrapped in an httptrace.ClientTrace. 2. Refactor debugging system into debug package.
Diffstat (limited to 'constants/constants.go')
-rw-r--r--constants/constants.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/constants/constants.go b/constants/constants.go
index 02038a3..1a060dd 100644
--- a/constants/constants.go
+++ b/constants/constants.go
@@ -31,12 +31,3 @@ var (
// The default URL for the config host.
DefaultConfigHost string = "networkquality.example.com"
)
-
-type DebugLevel int8
-
-const (
- NoDebug DebugLevel = iota
- Debug
- Warn
- Error
-)