DESCRIBE wp_logger_ginger?
-
Hello,
I imm tryimg to find out why our WooCommerce site is so slow in the backend. Using a plugin calles “query monitor” I can see slow queries. AMong them is
DESCRIBE wp_logger_ginger;
and
do_action(‘plugins_loaded’)
wp-includes/plugin.php:453
ginger_logger_update_db_check()
wp-content/plugins/ginger/addon/logger/index.php:9
ginger_logger_create_table()
wp-content/plugins/ginger/addon/logger/index.php:28I wonder if there is something wrong here…is there maybe a database table created all the time? And why EXPLAIN?
In wp-content/plugins/ginger/addon/logger/index.php it says: $ginger_logger_db_version = ‘4.0’;
There is no option “ginger_logger_db_version” in our database, so this code:—
function ginger_logger_update_db_check() {
global $ginger_logger_db_version;
if ( get_site_option( ‘ginger_logger_db_version’ ) != $ginger_logger_db_version ) {
ginger_logger_create_table();
}
}
add_action( ‘plugins_loaded’, ‘ginger_logger_update_db_check’ );
—appears to create the table every time again…or is there something else happening here?
Can we switch off the logging without becoming GDPR-“illegal”?Thanks a lot!
- The topic ‘DESCRIBE wp_logger_ginger?’ is closed to new replies.