There may be cases where you would like to know what type of login method a user is using. By understanding and utilizing the artifactory-access.log, it is possible to find this information more efficiently.
For example, when moving users using access tokens to passwords, we will want to find all the users currently using access tokens. We can do so using the API Key/Token User Collection. We can run the following command to grep for all login entries using an access token:
cat $JFROG_HOME/artifactory/var/log/artifactory-access.log | grep "\\[ACCEPTED LOGIN\\].*\\[token\\]$"