View | Details | Raw Unified | Return to bug 58412
Collapse All | Expand All

(-)a/java/org/apache/juli/AsyncFileHandler.java (-1 / +5 lines)
Lines 92-97 public class AsyncFileHandler extends FileHandler { Link Here
92
        if (!isLoggable(record)) {
92
        if (!isLoggable(record)) {
93
            return;
93
            return;
94
        }
94
        }
95
        if (record != null) {
96
            // fill source entries, before we hand the record over to another
97
            // thread with another class loader
98
            record.getSourceMethodName();
99
        }
95
        LogEntry entry = new LogEntry(record,this);
100
        LogEntry entry = new LogEntry(record,this);
96
        boolean added = false;
101
        boolean added = false;
97
        try {
102
        try {
98
- 

Return to bug 58412