Skip to content

Commit

Permalink
move DelegatingKLogger to separate file (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
oshai authored Aug 1, 2023
1 parent 356a8c3 commit 767a1ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package io.github.oshai.kotlinlogging

public interface DelegatingKLogger<T> {
/** The actual logger executing logging */
public val underlyingLogger: T
}
Original file line number Diff line number Diff line change
Expand Up @@ -852,8 +852,3 @@ public interface KLogger {
@Deprecated("Use error instead", ReplaceWith("error(t, marker, msg)"))
public fun error(marker: Marker?, msg: String?, t: Throwable?): Unit = error(t, marker) { msg }
}

public interface DelegatingKLogger<T> {
/** The actual logger executing logging */
public val underlyingLogger: T
}

0 comments on commit 767a1ae

Please sign in to comment.