Skip to content

Commit

Permalink
Add support for INSTANA_DEBUG env var; drop INSTANA_DEV (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
pglombardo authored May 15, 2019
1 parent eff0fdf commit 78c1462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sensor.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func InitSensor(options *Options) {
if sensor == nil {
sensor = new(sensorS)
// If this environment variable is set, then override log level
_, ok := os.LookupEnv("INSTANA_DEV")
_, ok := os.LookupEnv("INSTANA_DEBUG")
if ok {
options.LogLevel = Debug
}
Expand Down

0 comments on commit 78c1462

Please sign in to comment.