Skip to content

Commit

Permalink
Fix typo in "SLF4JPlarformLoggerFactory"
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Aug 7, 2023
1 parent e63f87f commit 86e7b7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* @author Ceki
*
*/
public class SLF4JPlarformLoggerFactory {
public class SLF4JPlatformLoggerFactory {
ConcurrentMap<String, SLF4JPlatformLogger> loggerMap = new ConcurrentHashMap<>();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 86e7b7f

Please sign in to comment.