Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

Commit

Permalink
Add setting for disabling outgoing request logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dflemstr committed Jan 15, 2016
1 parent b6bf416 commit 2946159
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ public boolean enableIncomingRequestLogging() {
return optionalBoolean(apolloNode, "logIncomingRequests").orElse(true);
}

public boolean enableOutgoingRequestLogging() {
return optionalBoolean(apolloNode, "logOutgoingRequests").orElse(true);
}


public boolean enableMetaApi() {
return optionalBoolean(apolloNode, "metaApi").orElse(true);
}
Expand Down

0 comments on commit 2946159

Please sign in to comment.