Expand debug message [skip ci]

This commit is contained in:
James Cole 2018-01-14 19:58:39 +01:00
parent d568a6c8a9
commit 4428ccefbf
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -59,7 +59,7 @@ class VersionCheckEventHandler
$lastCheckTime = FireflyConfig::get('last_update_check', time()); $lastCheckTime = FireflyConfig::get('last_update_check', time());
$now = time(); $now = time();
if ($now - $lastCheckTime->data < 604800) { if ($now - $lastCheckTime->data < 604800) {
Log::debug('Checked for updates less than a week ago.'); Log::debug(sprintf('Checked for updates less than a week ago (on %s).', date('Y-m-d H:i:s',$lastCheckTime->data));
return; return;