Cleaned up error log when ReflectASM cannot be used

This commit is contained in:
nathan 2020-08-25 19:47:41 +02:00
parent a464d4b231
commit aaba26ab17

View File

@ -187,7 +187,7 @@ object RmiUtils {
methodClassId = classId, methodClassId = classId,
serializers = serializers) serializers = serializers)
} catch (e: Exception) { } catch (e: Exception) {
logger.trace("Unable to use ReflectAsm for {}.{} (using java reflection instead)", declaringClass, method.name, e) logger.error("Unable to use ReflectAsm for ${makeFancyMethodName(method)}", e)
} }
} }