Skip to content

Commit

Permalink
ip fix for auth log
Browse files Browse the repository at this point in the history
  • Loading branch information
sametd authored and jameshawkes committed Jan 9, 2024
1 parent e7f6357 commit 444f78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aviso-server/auth/aviso_auth/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def index():

@handler.route(self.config.backend["route"], methods=["POST"])
def root():
logger.info(f"New request received from {request.remote_addr}, content: {request.data}")
logger.info(f"New request received from {request.headers.get('X-Forwarded-For')}, content: {request.data}")

resp_content = timed_process_request()

Expand Down

0 comments on commit 444f78b

Please sign in to comment.