Removed confidential data from logging routine. [skip ci]

This commit is contained in:
James Cole
2015-07-10 20:25:17 +02:00
parent 8757929ead
commit e89d613b7e
6 changed files with 11 additions and 11 deletions

View File

@@ -46,7 +46,7 @@ class OpposingAccountIban extends BasicConverter implements ConverterInterface
/** @var Account $account */
foreach ($set as $account) {
if ($account->iban == $this->value) {
Log::debug('OpposingAccountIban::convert found an Account (#' . $account->id . ': ' . $account->name . ') with IBAN ' . $this->value);
Log::debug('OpposingAccountIban::convert found an Account (#' . $account->id . ': ******) with IBAN ******');
return $account;
}