Title: PHP Error Log Filling Constantly
Last modified: June 16, 2026

---

# PHP Error Log Filling Constantly

 *  [msrwebmaster](https://wordpress.org/support/users/msrwebmaster/)
 * (@msrwebmaster)
 * [2 weeks, 4 days ago](https://wordpress.org/support/topic/php-error-log-filling-constantly/)
 * the plugin seems to be working fine but our PHP error log is constantly adding
   a line as follows
   “[16-Jun-2026 16:36:31 UTC] PHP Notice: Function _load_textdomain_just_in_time
   was called **incorrectly**. Translation loading for the `events-manager` domain
   was triggered too early. This is usually an indicator for some code in the plugin
   or theme running too early. Translations should be loaded at the `init` action
   or later. Please see Debugging in WordPress for more information. (This message
   was added in version 6.7.0.) in /home/mysewing/public_html/wp-includes/functions.
   php on line 6170″If we leave the plugin activated as is the error log will bloat
   to a considerable size eventually. Is this possibly a bug that can be fixed?

Viewing 1 replies (of 1 total)

 *  [joneiseman](https://wordpress.org/support/users/joneiseman/)
 * (@joneiseman)
 * [2 weeks, 4 days ago](https://wordpress.org/support/topic/php-error-log-filling-constantly/#post-18940233)
 * While waiting for this to be fixed you can avoid the error log bloat by adding
   the following code snippet:
 *     ```wp-block-code
       add_filter( 'doing_it_wrong_trigger_error', function( $status, $function_name ) {    if ( '_load_textdomain_just_in_time' === $function_name ) {        return false;    }    return $status;}, 10, 2 );
       ```
   
 * You can use the [Code Snippets](https://wordpress.org/plugins/code-snippets/)
   plugin to add this code snippet.

Viewing 1 replies (of 1 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fphp-error-log-filling-constantly%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=3550347)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [joneiseman](https://wordpress.org/support/users/joneiseman/)
 * Last activity: [2 weeks, 4 days ago](https://wordpress.org/support/topic/php-error-log-filling-constantly/#post-18940233)
 * Status: not resolved