记录所有身份验证错误 Laravel (nova)

Log all authentication errors Laravel (nova)

我正在构建 api 并且我的 post 请求 return 以下消息

{"message":"Unauthenticated."}

这条消息很不清楚。我想记录有关 Laravel 护照身份验证尝试的更多信息。

我想将它们记录到

/storage/logs

问题:
是否可以将详细的 Auth 错误消息记录到存储日志文件夹中?

In your Laravel exception handler file create a custom handler for the exception that is being thrown that logs more information. On the OAuthServerException you can call getHint() to get a more specific error. References :

我希望阅读以下 laravel 护照 github 问题会对您有所帮助

https://github.com/laravel/passport/issues/403

https://github.com/laravel/passport/issues/289