The page at https://logging.apache.org/download.html says:
for sigFile in *.asc; do gpg --verify $sigFile; done
That is insecure; gpg verify needs two parameters: the .asc file and the artifact itself.
This is described here:
https://www.apache.org/info/verification.html#specify_both
There is a further issue that the verification instructions are unlikely to work on Windows.