Forgot sprintf call.

This commit is contained in:
James Cole 2016-12-27 22:11:29 +01:00
parent 69c350dcca
commit 02e792148c

View File

@ -49,7 +49,7 @@ class StoredJournalEventHandler
* Verify existence of piggy bank:
*/
if (!$this->verifyExistence($event)) {
Log::error('No such piggy bank or no repetition on %s', $journal->date->format('Y-m-d'));
Log::error(sprintf('No such piggy bank or no repetition on %s', $journal->date->format('Y-m-d')));
return true;
}