From 724c19d539a3603c33a9527d62a77a94e4847a85 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 27 Nov 2022 09:26:52 +1100 Subject: [PATCH] Clean up for logging --- app/Services/Client/ClientService.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Services/Client/ClientService.php b/app/Services/Client/ClientService.php index 9b9da5dfaf0a..54bfcb799ea1 100644 --- a/app/Services/Client/ClientService.php +++ b/app/Services/Client/ClientService.php @@ -33,8 +33,6 @@ class ClientService try { \DB::connection(config('database.default'))->transaction(function () use($amount) { - nlog("inside transaction - updating balance by {$amount}"); - $this->client = Client::withTrashed()->where('id', $this->client->id)->lockForUpdate()->first(); $this->client->balance += $amount; $this->client->save();