Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
oshai committed Jul 12, 2023
1 parent ce5bf15 commit 91780f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import org.slf4j.spi.LocationAwareLogger
* correct fully qualified class name.
*/
internal class LocationAwareKLogger(override val underlyingLogger: LocationAwareLogger) :
KLogger, DelegatingKLogger<LocationAwareLogger>, Slf4jLogger() {
KLogger, DelegatingKLogger<LocationAwareLogger>, Slf4jLogger<LocationAwareLogger>() {

override val name: String
get() = underlyingLogger.name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import org.slf4j.Logger
* methods
*/
internal class LocationIgnorantKLogger(override val underlyingLogger: Logger) :
KLogger, DelegatingKLogger<Logger>, Slf4jLogger() {
KLogger, DelegatingKLogger<Logger>, Slf4jLogger<Logger>() {

override val name: String
get() = underlyingLogger.name
Expand Down

0 comments on commit 91780f1

Please sign in to comment.