You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The old WooCommerce function wc_get_log_file_path(), used in seven locations in this 2Checkout plugin, is now deprecated, and it is throwing deprecation notices that fill up the error logs in the development environment.
[10-Jul-2024 20:34:55 UTC] PHP Deprecated: Function wc_get_log_file_path is deprecated since version 8.6.0 with no alternative available. in /Users/USERNAME/Sites/site.test/wp-includes/functions.php on line 6078
[10-Jul-2024 20:34:57 UTC] The wc_get_log_file_path function is deprecated since version 8.6.0.
In fact, it does not look like the function is actually being put to use, as they are passed as values in sprintf calls with strings that have no variables (unless they are added in translation?): For example:
[13-Jul-2024 02:05:10 UTC] PHP Notice: Undefined index: HASH in public_html/wp-content/plugins/twocheckout-inline/src/Twocheckout/class-two-checkout-ipn-helper.php on line 198
Ths is all I get. It's the only error showing in my logs.
The old WooCommerce function
wc_get_log_file_path()
, used in seven locations in this 2Checkout plugin, is now deprecated, and it is throwing deprecation notices that fill up the error logs in the development environment.In fact, it does not look like the function is actually being put to use, as they are passed as values in sprintf calls with strings that have no variables (unless they are added in translation?): For example:
sprintf(__('Log 2Checkout events', 'woocommerce'), wc_get_log_file_path('twocheckout'))
So to keep my error log clean on my end, I just removed the sprintf calls with the deprecated function and kept the translatable string part.
The text was updated successfully, but these errors were encountered: