mirror of https://github.com/qos-ch/slf4j
Fix typo in "SLF4JPlarformLoggerFactory"
Signed-off-by: Ethan McCue <ethan@mccue.dev>
This commit is contained in:
parent
7a4da876b3
commit
aa13da39ed
|
|
@ -37,7 +37,7 @@ import org.slf4j.LoggerFactory;
|
|||
* @author Ceki
|
||||
*
|
||||
*/
|
||||
public class SLF4JPlarformLoggerFactory {
|
||||
public class SLF4JPlatformLoggerFactory {
|
||||
ConcurrentMap<String, SLF4JPlatformLogger> loggerMap = new ConcurrentHashMap<>();
|
||||
|
||||
/**
|
||||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue