Fix String format in log
Use %s in the log string format, to avoid java.util.UnknownFormatConversionException: Conversion = ']' when enabling debug logs.
This commit is contained in:
parent
a2f7f59de4
commit
4318349b4d
|
@ -160,7 +160,7 @@ public class AttributeNodeImpl<J>
|
|||
|
||||
final SubGraphImplementor<? extends J> previous = subGraphMap.put( subType, (SubGraphImplementor) subGraph );
|
||||
if ( previous != null ) {
|
||||
log.debugf( "Adding sub-graph [%s] over-wrote existing [%]", subGraph, previous );
|
||||
log.debugf( "Adding sub-graph [%s] over-wrote existing [%s]", subGraph, previous );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue