diff --git a/plugins/woocommerce/changelog/tweak-disable-remote-logging-by-default b/plugins/woocommerce/changelog/tweak-disable-remote-logging-by-default new file mode 100644 index 00000000000..cd22a7c5643 --- /dev/null +++ b/plugins/woocommerce/changelog/tweak-disable-remote-logging-by-default @@ -0,0 +1,4 @@ +Significance: patch +Type: tweak + +Disable remote logging feature by default diff --git a/plugins/woocommerce/src/Internal/Features/FeaturesController.php b/plugins/woocommerce/src/Internal/Features/FeaturesController.php index e777fc63fb8..1b9b4515c33 100644 --- a/plugins/woocommerce/src/Internal/Features/FeaturesController.php +++ b/plugins/woocommerce/src/Internal/Features/FeaturesController.php @@ -241,7 +241,7 @@ class FeaturesController { 'Enable this feature to log errors and related data to Automattic servers for debugging purposes and to improve WooCommerce', 'woocommerce' ), - 'enabled_by_default' => true, + 'enabled_by_default' => false, 'disable_ui' => true, 'is_legacy' => false, 'is_experimental' => true,