Skip to content

Commit

Permalink
Fix typo in "SLF4JPlarformLoggerFactory"
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan McCue <ethan@mccue.dev>
  • Loading branch information
bowbahdoe authored and ceki committed Aug 8, 2023
1 parent 7a4da87 commit aa13da3
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 aa13da3

Please sign in to comment.