Reduced log spam when checking for avatars.

This commit is contained in:
CalDescent 2022-01-17 20:04:54 +00:00
parent cfc80cb9b0
commit 318f433f22

View File

@ -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());
}
}