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();