org.immregistries.codebase.client.util.LoggingUtility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebase-client Show documentation
Show all versions of codebase-client Show documentation
Reads the Codebase XML and provides helper classes to use it.
The newest version!
package org.immregistries.codebase.client.util;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class LoggingUtility {
private static final Logger logger = LoggerFactory
.getLogger(LoggingUtility.class);
public String stringify(Object o) {
return ReflectionToStringBuilder.toString(o);
}
}