Skip to content

Commit

Permalink
Minor Fix : Changing defaultValue from true to false in monitorApps()…
Browse files Browse the repository at this point in the history
… to ensure no-logging if logEnabled=false
  • Loading branch information
Aayush Kumar committed Jul 25, 2016
1 parent 2e0b463 commit c4427ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-monitor.go
Expand Up @@ -68,7 +68,7 @@ func (a *AppMonitor) monitorApps() error {
}

for _, app := range apps.Apps {
isLogEnabled := maps.GetBoolean(*app.Labels, LogEnabledLabel, true)
isLogEnabled := maps.GetBoolean(*app.Labels, LogEnabledLabel, false)
if isLogEnabled {
app, err := a.Client.Application(app.ID)
if err != nil {
Expand Down

0 comments on commit c4427ca

Please sign in to comment.