We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crear middleware ó función que permita registrar los logs Usando la variable de entorno APP_LOGS_URL
APP_LOGS_URL
Puede ser algo así
APP_LOGS_URL = os.gentenv('APP_LOGS_URL') async def logging_middleware(request: Request, call_next): if not APP_LOGS_URL: return await call_next(request) ... # rest of code
The text was updated successfully, but these errors were encountered:
andreshndz
No branches or pull requests
Crear middleware ó función que permita registrar los logs
Usando la variable de entorno
APP_LOGS_URL
Puede ser algo así
The text was updated successfully, but these errors were encountered: