Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Hale <[email protected]>
  • Loading branch information
nebhale committed Aug 25, 2020
1 parent b2acde6 commit 6a1e61f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions helper/access_logging_support.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ type AccessLoggingSupport struct {
}

func (a AccessLoggingSupport) Execute() (map[string]string, error) {
_, ok := os.LookupEnv("BPL_TOMCAT_ACCESS_LOGGING_ENABLED")
if !ok {
if _, ok := os.LookupEnv("BPL_TOMCAT_ACCESS_LOGGING_ENABLED"); !ok {
return nil, nil
}

Expand Down

0 comments on commit 6a1e61f

Please sign in to comment.