diff --git a/kontrol-service/api/analytics.go b/kontrol-service/api/analytics.go index efbed17..2aac9bd 100644 --- a/kontrol-service/api/analytics.go +++ b/kontrol-service/api/analytics.go @@ -21,9 +21,6 @@ const ( // NewAnalyticsWrapper creates a new AnalyticsWrapper func NewAnalyticsWrapper(isDevMode bool, writeKey string) *AnalyticsWrapper { if !isDevMode && writeKey != "" { - // This is the Segment write key for the "kontrol-service" project. It is not - // a sensitive value, but it could be extracted to an env var in the future - // to separate dev and prod traffic if desired. client := analytics.New(writeKey) logrus.Info("Segment analytics client initialized") return &AnalyticsWrapper{client: &client}