Skip to content

Commit

Permalink
Add http response id
Browse files Browse the repository at this point in the history
  • Loading branch information
andresriancho committed Sep 23, 2019
1 parent 66bbde4 commit e24cab6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions w3af/plugins/auth/autocomplete.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,9 @@ def _get_login_form(self):
login_form = form_params

if login_form is None:
msg = ('Failed to find an HTML login form at %s. The authentication'
' plugin is most likely incorrectly configured.')
args = (self.login_form_url,)
msg = ('Failed to find an HTML login form at %s (id: %s).'
' The authentication plugin is most likely incorrectly configured.')
args = (self.login_form_url, http_response.id)
self._log_error(msg % args)

#
Expand Down

0 comments on commit e24cab6

Please sign in to comment.