Skip to content

Commit

Permalink
Increased sentry not initialized log level to 5
Browse files Browse the repository at this point in the history
Sentry not being initialized isn't really a message many users need to
see, since it's not an error. This increases the log level for it
to the level generally used for debug information in Kubernetes services.
  • Loading branch information
jnschaeffer committed Jan 15, 2020
1 parent 5d6204f commit 87c56fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/sentry.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func SetHubOnContext(ctx context.Context) context.Context {
// function also returns nil.
func getHubFromContext(ctx context.Context) *sentry.Hub {
if !initialized {
glog.V(3).Info("getHubFromContext: Sentry not initialized")
glog.V(5).Info("getHubFromContext: Sentry not initialized")
return nil
}

Expand Down

0 comments on commit 87c56fc

Please sign in to comment.