Package org.slf4j.instrumentation
Class ToStringHelper
- java.lang.Object
-
- org.slf4j.instrumentation.ToStringHelper
-
public class ToStringHelper extends Object
-
-
Constructor Summary
Constructors Constructor Description ToStringHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
render(Object o)
Returns o.toString() unless it throws an exception (which causes it to be stored in unrenderableClasses) or already was present in unrenderableClasses.
-
-
-
Method Detail
-
render
public static String render(Object o)
Returns o.toString() unless it throws an exception (which causes it to be stored in unrenderableClasses) or already was present in unrenderableClasses. If so, the same string is returned as would have been returned by Object.toString(). Arrays get special treatment as they don't have usable toString methods.- Parameters:
o
- incoming object to render.- Returns:
-
-