diff --git a/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordConverter.java b/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordConverter.java index d57bb9299..11f13b34f 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordConverter.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/converter/AbstractWordConverter.java @@ -324,7 +324,7 @@ public abstract class AbstractWordConverter if ( structure.structure instanceof Bookmark ) { - // other bookmarks with same bundaries + // other bookmarks with same boundaries List bookmarks = new LinkedList(); for ( Bookmark bookmark : ( (HWPFDocument) wordDocument ) .getBookmarks() @@ -379,8 +379,10 @@ public abstract class AbstractWordConverter { if ( previous > range.getEndOffset() ) { - logger.log( POILogger.WARN, "Latest structure in " + range - + " ended after range (" + previous + ")" ); + logger.log( POILogger.WARN, "Latest structure in ", range, + " ended at #" + previous, " after range boundaries [", + range.getStartOffset() + "; " + range.getEndOffset(), + ")" ); return true; }