I have an object array from a Hibernate query that I want to show in a logger
message.
I have
//row output
for (Object[] objs : results)
{
logger.info(objs.toString());
}
but I get [Ljava.lang.Object;@60cf75a9
for each.
How do I convert the array to a string output?