Skip to content

Commit

Permalink
Merge pull request #35 from edx/dkaplan1/allow-stricter-masking
Browse files Browse the repository at this point in the history
feat: allow stricter masking
  • Loading branch information
deborahgu authored Aug 12, 2024
2 parents 1c8ea2f + fdb1935 commit 3f84826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DatadogLoggingService.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class DatadogLoggingService extends NewRelicLoggingService {
trackUserInteractions: true,
trackResources: true,
trackLongTasks: true,
defaultPrivacyLevel: 'mask-user-input',
defaultPrivacyLevel: process.env.DATADOG_PRIVACY_LEVEL || 'mask-user-input',
});
datadogLogs.init({
clientToken: process.env.DATADOG_CLIENT_TOKEN,
Expand Down

0 comments on commit 3f84826

Please sign in to comment.