mirror of
https://github.com/fuckpiracyshield/api.git
synced 2024-12-22 18:40:52 +01:00
19 lines
347 B
Python
19 lines
347 B
Python
|
from piracyshield_component.log.logger import Logger
|
||
|
|
||
|
class LoggerInterceptor:
|
||
|
|
||
|
"""
|
||
|
Logs requests
|
||
|
"""
|
||
|
|
||
|
async def execute(self, r):
|
||
|
r.application.logger.debug(f'> GET `{r.request.uri}` from `{r.request.remote_ip}`')
|
||
|
|
||
|
class LoggerInterceptorException(Exception):
|
||
|
|
||
|
"""
|
||
|
We need this as a placeholder.
|
||
|
"""
|
||
|
|
||
|
pass
|