Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.logging.log4j.core.pattern;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertInstanceOf;
import static org.junit.jupiter.api.Assertions.assertTrue;

import java.util.List;
import org.apache.logging.log4j.core.impl.LocationAware;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;

class LocationPatternConvertersRequireLocationTest {

/**
* Reproduces <a href="https://github.com/apache/logging-log4j2/issues/2781">github issue #2781</a>.
*/
@ParameterizedTest
@CsvSource({"%L", "%l", "%F", "%C", "%M"})
void testThatLocationDependentPatternConvertersIndicateLocationRequirement(final String converterKey)
throws Exception {
final PatternFormatter formatter = createSinglePatternFormatterFromConverterKey(converterKey);

final LocationAware locationAwareFormatter = assertInstanceOf(LocationAware.class, formatter.getConverter());
assertTrue(locationAwareFormatter.requiresLocation());
}

private static PatternFormatter createSinglePatternFormatterFromConverterKey(final String converterKey) {
final PatternParser parser = new PatternParser(PatternConverter.CATEGORY);
final List<PatternFormatter> formatters = parser.parse(converterKey);
assertEquals(1, formatters.size());
final PatternFormatter formatter = formatters.get(0);
return formatter;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@

import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.impl.LocationAware;

/**
* Returns the event's line location information in a StringBuilder.
*/
@Plugin(name = "FileLocationPatternConverter", category = PatternConverter.CATEGORY)
@ConverterKeys({"F", "file"})
public final class FileLocationPatternConverter extends LogEventPatternConverter {
public final class FileLocationPatternConverter extends LogEventPatternConverter implements LocationAware {
/**
* Singleton.
*/
Expand Down Expand Up @@ -58,4 +59,9 @@ public void format(final LogEvent event, final StringBuilder output) {
output.append(element.getFileName());
}
}

@Override
public boolean requiresLocation() {
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Provides classes implementing format specifiers in conversion patterns.
*/
@Export
@Version("2.21.1")
@Version("2.24.0")
package org.apache.logging.log4j.core.pattern;

import org.osgi.annotation.bundle.Export;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://logging.apache.org/xml/ns"
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-changelog-0.xsd"
type="fixed">
<issue id="2781" link="https://github.com/apache/logging-log4j2/issues/2781"/>
<description format="asciidoc">Fix location requirement for the `%F` and `%file` keys in Pattern Layout</description>
</entry>