public void tail()

in src/main/java/org/apache/sling/commons/log/logback/internal/Tailer.java [51:66]


    public void tail(File file) throws IOException {
        RandomAccessFile raf = null;
        try{
            raf = new RandomAccessFile(file, "r");
            long startPos = getTailStartPos(raf, numOfLines);
            readLines(raf, startPos);
        } finally {
            try{
                if (raf != null) {
                    raf.close();
                }
            } catch (IOException ignore){

            }
        }
    }