Browse Source

Fix message call.

pull/188/head
James Cole 3 years ago
parent
commit
7e2865a40b
  1. 2
      app/Services/Nordigen/Model/Transaction.php

2
app/Services/Nordigen/Model/Transaction.php

@ -161,7 +161,7 @@ class Transaction
$hash = hash('sha256', (string) microtime());
try {
$hash = hash('sha256', json_encode($array, JSON_THROW_ON_ERROR));
app('log')->warn('Generated random transaction ID from array!');
app('log')->warning('Generated random transaction ID from array!');
} catch (JsonException $e) {
app('log')->error(sprintf('Could not parse array into JSON: %s', $e->getMessage()));
}

Loading…
Cancel
Save