}
private static boolean readEntry( FileChannel channel, ByteBuffer buf,
XaCommandFactory cf ) throws IOException
{
LogEntry entry = LogIoUtils.readEntry( buf, channel, cf );
if ( entry != null )
{
System.out.println( entry.toString() );
return true;
}
return false;
}