private String makeAuditLogMessage(AuthenticationType authenticationType) {
   return "type="
       + authenticationType.toString()
       + ", "
       + "source="
       + (authenticationSource == null ? "null" : authenticationSource.toString());
 }