Skip to content

Commit

Permalink
Hot Fix: Feature flag should debug instead of log. (#22192)
Browse files Browse the repository at this point in the history
This clutters up logs.
  • Loading branch information
davinchia committed Feb 1, 2023
1 parent d36032f commit ee00fcc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ public void validateSchema(final AirbyteRecordMessage message, final AirbyteStre

if (workspaceId != null) {
if (featureFlagClient.enabled(PerfBackgroundJsonValidation.INSTANCE, new Workspace(workspaceId))) {
log.info("feature flag enabled for workspace {}", workspaceId);
log.debug("feature flag enabled for workspace {}", workspaceId);
} else {
log.info("feature flag disabled for workspace {}", workspaceId);
log.debug("feature flag disabled for workspace {}", workspaceId);
}
} else {
log.info("workspace id is null");
log.debug("workspace id is null");
}

try {
Expand Down

0 comments on commit ee00fcc

Please sign in to comment.