Skip to content

Commit

Permalink
Merge pull request #485 from rjbs/remove-crypt-pw-log
Browse files Browse the repository at this point in the history
pause_2017: remove logging of crypt pw on failed login
  • Loading branch information
rjbs authored Apr 28, 2024
2 parents a13591c + 6b6e41e commit de917d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pause_2017/PAUSE/Web/Middleware/Auth/Basic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ sub authenticate {
$dbh->disconnect;
return HTTP_OK;
} else {
warn sprintf "crypt_pw[%s]user[%s]uri[%s]auth_required[%d]",
$crypt_pw, $user_record->{user}, $req->path, HTTP_UNAUTHORIZED;
warn sprintf "failed login: user[%s]uri[%s]auth_required[%d]",
$user_record->{user}, $req->path, HTTP_UNAUTHORIZED;
}
}

Expand Down

0 comments on commit de917d6

Please sign in to comment.