Browse Source

Reduced log spam when checking for avatars.

trade-portal-updates
CalDescent 3 years ago
parent
commit
318f433f22
  1. 2
      src/main/java/org/qortal/api/resource/ArbitraryResource.java

2
src/main/java/org/qortal/api/resource/ArbitraryResource.java

@ -1024,7 +1024,7 @@ public class ArbitraryResource {
return response;
} catch (Exception e) {
LOGGER.info(String.format("Unable to load %s %s: %s", service, name, e.getMessage()));
LOGGER.debug(String.format("Unable to load %s %s: %s", service, name, e.getMessage()));
throw ApiExceptionFactory.INSTANCE.createCustomException(request, ApiError.FILE_NOT_FOUND, e.getMessage());
}
}

Loading…
Cancel
Save