Minor fixes

This commit is contained in:
David Bomba 2021-10-30 08:30:48 +11:00
parent 00af1bb7b5
commit 8ea4b66857
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class VersionCheck implements ShouldQueue
{
$version_file = trim(file_get_contents(config('ninja.version_url')));
info("latest version = {$version_file}");
nlog("latest version = {$version_file}");
if ($version_file) {
Account::whereNotNull('id')->update(['latest_version' => $version_file]);

View File

@ -79,7 +79,7 @@ class PayFastPaymentDriver extends BaseDriver
} catch(\Exception $e) {
echo '##PAYFAST## There was an exception: '.$e->getMessage();
nlog('##PAYFAST## There was an exception: '.$e->getMessage());
}