Fix typo in "SLF4JPlarformLoggerFactory"

Signed-off-by: Ethan McCue <ethan@mccue.dev>
This commit is contained in:
Ethan McCue 2023-08-07 17:44:11 -04:00 committed by Ceki Gülcü
parent 7a4da876b3
commit aa13da39ed
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ import org.slf4j.LoggerFactory;
* @author Ceki
*
*/
public class SLF4JPlarformLoggerFactory {
public class SLF4JPlatformLoggerFactory {
ConcurrentMap<String, SLF4JPlatformLogger> loggerMap = new ConcurrentHashMap<>();
/**

View File

@ -25,14 +25,14 @@
package org.slf4j.jdk.platform.logging;
/**
* Uses {@link SLF4JPlarformLoggerFactory#getLogger(String)} to get a logger
* Uses {@link SLF4JPlatformLoggerFactory#getLogger(String)} to get a logger
* that is adapted for {@link System.Logger}.
*
* @since 2.0.0
*/
public class SLF4JSystemLoggerFinder extends System.LoggerFinder {
final SLF4JPlarformLoggerFactory platformLoggerFactory = new SLF4JPlarformLoggerFactory();
final SLF4JPlatformLoggerFactory platformLoggerFactory = new SLF4JPlatformLoggerFactory();
@Override
public System.Logger getLogger(String name, Module module) {