The issue is because of the following lines of code at FileNamePattern.toRegexForFixedDate(). Instead of d {1,3}, is it's d{1,4}, it will be able to handle log files upto *.9999. } else if (p instanceof IntegerTokenConverter) { buf.append("( d{1,3}
)"); }
|