[ad_1]
WordPress itself actually resets PHP’s default time zone to UTC early into setup to make it easier to construct “local” times using the stored site preference (a timezone string or offset or nothing).
Jeepers Peepers has been using UTC rather than site time for consistency, especially across multiple sites and servers, but you make a good point.
To that end, I just pushed a new release (0.5.4) with support for an extra config override, BLOBAUDIT_LOG_UTC, that can be used to toggle between the two choices.
Once you’ve updated, double-check your site’s timezone is set to the desired locale (Settings > General), then add the following to wp-config.php:
// Use site time instead of UTC for Jeepers Peepers logs.
define('BLOBAUDIT_LOG_UTC', false);Log times should reflect the current site time rather than UTC thereafter.
