I know it was mentioned in the comments that you solved this by locating the offending plugin. However, I thought the following answer may be helpful for others if they happen along this in a search.
Here’s a little code snippet that can be used to save the debug log file by date:
ini_set( 'error_log', WP_CONTENT_DIR . '/debug-' . date('Y-m-d') . '.log' );
Using this method, you can prevent the file from just growing (it will set a new one each day).
Obviously, you want to track down the real problem so the debug log doesn’t grow infinitely. But using something like this can buy some time to help during the process.
Related Posts:
- How to fix the admin menu margin-top bug in WordPress 5.5?
- error_log() output for print_r() appearing on page
- What is in media-template.php, and how does it work?
- Does the debug.log do log rotation?
- Debugging an error: wp_enqueue_style was called incorrectly
- Change Password Hint
- Best way to extends core classes in theme?
- Where exactly do I write define( ‘WP_DEBUG’, true ) in wp-config file
- Utilize WP-CLI from inside WordPress, not SSH
- error_log is not working as expected in functions.php file
- Question about the template-loader.php file
- Using FirePHP with WordPress
- How does WP detect format type (and can I make use of this)?
- Debugging PHP object during Ajax call in WordPress
- “Notice: Undefined variable: content” is showing [closed]
- How to start a script from cli within wordpress
- mysqli_real_connect() – authentication method unknown to the client Warnings
- How to debug php code in hostgator cPanel
- how to trace notice warning on core function is_page() & is_singular in class-wp-query.php
- Remove annoying WP Adminbar CSS
- How do I implement a .diff changeset from core.trac.wordpress.org locally?
- Preferred Method of debugging a wordpress SQL calls?
- Same log message keeps on printing to debug.log file thousand of times
- How to find error in my code when the error message is pointing to WP core file?
- Mute Debug Messages from Plugins
- XAMPP-VM Mac OS Mojave wordpress debugging using XDebug
- How to debug my custom login form looping intermittently
- Are all hooks/functions tied to Kses meant for sanitization?
- “Undefined index” error when saving empty array with checkboxes
- Site throws 500 error after upgrading from PHP 5.6 to 7.X
- Location of core code for database connection and get_header
- How to display SQL query that ran in WC_Order_Query?
- How can I find the cause of a 500 server error?
- Admin submenu issue with PHP not detecting two strings as equal
- Hooks for post saving make a post-new.php to load latest post’s data
- add button to specific post
- Usage of var keyword in the core
- Publish button now showing content after saving
- Use wp_head hook on template page
- var_dump() and print_r() display null in php
- File is executed twice if plugin is activating
- Fatal error: wp-settings.php on line 199
- How to display only specific Error types in debug.log? No notices, warnings, etc
- Load WordPress core but with specific plugins
- How to identify which php file a plugin is using on page load?
- Notice : Array to string conversion on array_intersect user meta
- Custom WordPress Core upgrade through wp-cli
- Notice: Undefined index: post_title error
- (Xdebug Profiler) Why are there two cachegrind files generated for one page?
- Stripe button is not working in a template page
- I’m writing my first plugin and my echo output is showing up on every page of my wordpress installation
- How to find the function which is outputting Array
- Accessing Variables Used In a Plugin Using PHPStorm + XDebug
- WordPress won’t display errors at all
- Warning: Cannot modify header information (with a twist)
- How to quickly/easily make an analysis (reverse engineering) of WordPress?
- which php or css file has generated an inline style in WordPress that overwrites my css
- WordPress White Screen Error
- How can precision be improved for the debug log timestamp?
- Internal server error when enabling Multisite in WordPress
- change div text and link for logged in users
- How do I see logs of critical errors of specific pages without enabling public debug for everyone?
- “Object-cache.php” disables wp_cron and even disables my entire site, and keeps reappearing by itself again after I delete it
- Add Imports to Existing WordPress Import Map
- How to get the post title inside a custom block in a loop? block.js
- Help with page nav?
- Show recent posts starting at a specific number archive
- Add title=”” to A PHP Code
- Get Page ID from Backend
- Help with WordPress function inside a shortcode
- Wpdb->insert() doesn’t insert new row after the last one
- WordPress plugin admin page – using WordPress function in linked php file
- HTML table attributes ignored
- What’s the best way to include PHP code in pages?
- Is there any wordpress plugin to upload images and captions to multiple pages once
- How to fix this PHP warning in WP-Admin after upgrading to 3.1.2?
- PHP in Edit Post link
- Removing the first 8-10 letters from a post?
- How to add drag and drop functionalities to a div inside option panel
- WordPress and MySQL: trying to print data using PHP from user_meta custom field data
- Timthumb.php image gallery not working on Multisite WordPress
- Function Reference Documenting Template Tags for use in Custom Theme Templates?
- How do you create two separate Register pages?
- $_GET[‘updated’] does not work in WordPress 3.1?
- Why doesn’t PhotoSmash plugin play well with wp_query?
- How to send form data from WordPress (Meta Box) to an OData service?
- How to Configure Events List in WordPress to Disappear Event Once Date is Past
- Removing WordPress Footer -without access to PHP code?
- dynamic page using php from sql database
- Upload non-featured image to image field
- Usage of call back function of add_meta_box()
- Building a REST API for your web app exposes primary keys of DB records?
- WordPress get_media_embedded
- Change product_base programmatically
- wp_delete_comment takes two tries to delete – then deletes all comments
- php redirect with custom user roles set and working but redirect not working for when users are logged in
- how to get serialized post meta
- Hide Heading if ACF Field is empty
- Scheduling an event inside plugin class is not working
- How to remove the message ‘We could not find any results for your search’ without changing template files and without adding posts/pages?