Skip to content

Commit

Permalink
removed logger on auth method
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Jul 18, 2024
1 parent 6efdac2 commit 8c37ab6
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
use Fleetbase\RegistryBridge\Support\Bridge;
use Fleetbase\Support\Auth;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Str;

class RegistryAuthController extends Controller
Expand All @@ -34,8 +33,6 @@ class RegistryAuthController extends Controller
*/
public function authenticate(AuthenticateRegistryUserRequest $request)
{
// For debug purposes
Log::info('Incoming authentication request from registry -> Headers: {headers} Payload: {payload}', ['headers' => $request->headers->all(), 'payload' => $request->all()]);
$identity = $request->input('identity');
$password = $request->input('password');

Expand Down

0 comments on commit 8c37ab6

Please sign in to comment.