Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
don't use honeycomb
Browse files Browse the repository at this point in the history
  • Loading branch information
ineiti committed Jun 17, 2020
1 parent 183f274 commit 397b392
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkg.base/onet/tracing/no_honeycomb.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package tracing

import (
"os"

"go.dedis.ch/onet/v3/log"
)

func init() {
log.Info("Disabling Honeycomb")
log.ErrFatal(os.Setenv("HONEYCOMB_API_KEY", ""))
}
12 changes: 12 additions & 0 deletions pkg/onet/tracing/no_honeycomb.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package tracing

import (
"os"

"go.dedis.ch/onet/v3/log"
)

func init() {
log.Info("Disabling Honeycomb")
log.ErrFatal(os.Setenv("HONEYCOMB_API_KEY", ""))
}

0 comments on commit 397b392

Please sign in to comment.