File tree Expand file tree Collapse file tree 12 files changed +16
-16
lines changed
main/java/org/apache/logging/log4j/async/logger
test/java/org/apache/logging/log4j/async/logger
src/main/java/org/apache/logging/log4j/core
main/java/org/apache/logging/log4j/kit/logger
test/java/org/apache/logging/log4j/kit/logger Expand file tree Collapse file tree 12 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 3333import org .apache .logging .log4j .core .impl .ContextDataFactory ;
3434import org .apache .logging .log4j .core .time .Clock ;
3535import org .apache .logging .log4j .core .time .NanoClock ;
36+ import org .apache .logging .log4j .kit .logger .AbstractLogger ;
3637import org .apache .logging .log4j .message .FlowMessageFactory ;
3738import org .apache .logging .log4j .message .Message ;
3839import org .apache .logging .log4j .message .MessageFactory ;
39- import org .apache .logging .log4j .sdk .logger .AbstractLogger ;
4040import org .apache .logging .log4j .spi .recycler .Recycler ;
4141import org .apache .logging .log4j .spi .recycler .RecyclerFactory ;
4242import org .apache .logging .log4j .util .StackLocatorUtil ;
Original file line number Diff line number Diff line change 3030import org .apache .logging .log4j .core .config .LoggerConfig ;
3131import org .apache .logging .log4j .core .config .Property ;
3232import org .apache .logging .log4j .core .impl .LogEventFactory ;
33+ import org .apache .logging .log4j .kit .logger .AbstractLogger ;
3334import org .apache .logging .log4j .plugins .Configurable ;
3435import org .apache .logging .log4j .plugins .Plugin ;
3536import org .apache .logging .log4j .plugins .PluginFactory ;
36- import org .apache .logging .log4j .sdk .logger .AbstractLogger ;
3737import org .apache .logging .log4j .util .Strings ;
3838
3939/**
Original file line number Diff line number Diff line change 2828import org .apache .logging .log4j .core .impl .Log4jPropertyKey ;
2929import org .apache .logging .log4j .core .test .junit .ContextSelectorType ;
3030import org .apache .logging .log4j .core .test .junit .LoggerContextSource ;
31+ import org .apache .logging .log4j .kit .logger .AbstractLogger ;
3132import org .apache .logging .log4j .message .Message ;
3233import org .apache .logging .log4j .message .ReusableSimpleMessage ;
33- import org .apache .logging .log4j .sdk .logger .AbstractLogger ;
3434import org .junit .jupiter .api .Tag ;
3535import org .junit .jupiter .api .Test ;
3636import org .junitpioneer .jupiter .SetSystemProperty ;
Original file line number Diff line number Diff line change 7272 </dependency >
7373 <dependency >
7474 <groupId >org.apache.logging.log4j</groupId >
75- <artifactId >log4j-plugins </artifactId >
75+ <artifactId >log4j-kit </artifactId >
7676 </dependency >
7777 <dependency >
7878 <groupId >org.apache.logging.log4j</groupId >
79- <artifactId >log4j-sdk </artifactId >
79+ <artifactId >log4j-plugins </artifactId >
8080 </dependency >
8181 <!-- The dependency on the plugin processor is only required to ensure the processor is built before core. We
8282 don't want the dependency to be included by consumers -->
Original file line number Diff line number Diff line change 2828import org .apache .logging .log4j .core .config .LoggerConfig ;
2929import org .apache .logging .log4j .core .config .ReliabilityStrategy ;
3030import org .apache .logging .log4j .core .filter .CompositeFilter ;
31+ import org .apache .logging .log4j .kit .logger .AbstractLogger ;
3132import org .apache .logging .log4j .message .FlowMessageFactory ;
3233import org .apache .logging .log4j .message .Message ;
3334import org .apache .logging .log4j .message .MessageFactory ;
34- import org .apache .logging .log4j .sdk .logger .AbstractLogger ;
3535import org .apache .logging .log4j .spi .recycler .RecyclerFactory ;
3636import org .apache .logging .log4j .util .Strings ;
3737import org .apache .logging .log4j .util .Supplier ;
Original file line number Diff line number Diff line change 4040import org .apache .logging .log4j .core .config .Property ;
4141import org .apache .logging .log4j .core .config .plugins .PluginConfiguration ;
4242import org .apache .logging .log4j .core .filter .AbstractFilterable ;
43+ import org .apache .logging .log4j .kit .logger .AbstractLogger ;
4344import org .apache .logging .log4j .plugins .Configurable ;
4445import org .apache .logging .log4j .plugins .Factory ;
4546import org .apache .logging .log4j .plugins .Plugin ;
4647import org .apache .logging .log4j .plugins .PluginAliases ;
4748import org .apache .logging .log4j .plugins .PluginBuilderAttribute ;
4849import org .apache .logging .log4j .plugins .PluginElement ;
4950import org .apache .logging .log4j .plugins .validation .constraints .Required ;
50- import org .apache .logging .log4j .sdk .logger .AbstractLogger ;
5151import org .apache .logging .log4j .util .InternalApi ;
5252
5353/**
Original file line number Diff line number Diff line change 2424 <relativePath >../log4j-parent</relativePath >
2525 </parent >
2626
27- <artifactId >log4j-sdk </artifactId >
28- <name >Apache Log4j SDK </name >
27+ <artifactId >log4j-kit </artifactId >
28+ <name >Apache Log4j Kit </name >
2929 <description >Helpers to implement Log4j 2.x API.</description >
3030
3131 <properties >
Original file line number Diff line number Diff line change 1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17- package org .apache .logging .log4j .sdk .logger ;
17+ package org .apache .logging .log4j .kit .logger ;
1818
1919import org .apache .logging .log4j .Level ;
2020import org .apache .logging .log4j .LogBuilder ;
2121import org .apache .logging .log4j .Logger ;
2222import org .apache .logging .log4j .LoggingException ;
2323import org .apache .logging .log4j .Marker ;
2424import org .apache .logging .log4j .MarkerManager ;
25+ import org .apache .logging .log4j .kit .logger .internal .DefaultLogBuilder ;
2526import org .apache .logging .log4j .message .EntryMessage ;
2627import org .apache .logging .log4j .message .FlowMessageFactory ;
2728import org .apache .logging .log4j .message .Message ;
2829import org .apache .logging .log4j .message .MessageFactory ;
2930import org .apache .logging .log4j .message .StringFormattedMessage ;
30- import org .apache .logging .log4j .sdk .logger .internal .DefaultLogBuilder ;
3131import org .apache .logging .log4j .spi .ExtendedLogger ;
3232import org .apache .logging .log4j .spi .recycler .Recycler ;
3333import org .apache .logging .log4j .spi .recycler .RecyclerFactory ;
Original file line number Diff line number Diff line change 1414 * See the License for the specific language governing permissions and
1515 * limitations under the License.
1616 */
17- package org .apache .logging .log4j .sdk .logger .internal ;
17+ package org .apache .logging .log4j .kit .logger .internal ;
1818
1919import java .util .Arrays ;
2020import org .apache .logging .log4j .BridgeAware ;
Original file line number Diff line number Diff line change 1616 */
1717@ Export
1818@ Version ("3.0.0" )
19- package org .apache .logging .log4j .sdk .logger ;
19+ package org .apache .logging .log4j .kit .logger ;
2020
2121import org .osgi .annotation .bundle .Export ;
2222import org .osgi .annotation .versioning .Version ;
You can’t perform that action at this time.
0 commit comments