Created
March 15, 2023 08:52
-
-
Save paulouskunda/85c8ff7e7960c27d142b4eb6df6f30d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.slf4j.Logger | |
import org.slf4j.LoggerFactory | |
class RecipeUtil { | |
inline fun <reified T> logger(): Logger { | |
return LoggerFactory.getLogger(T::class.java) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment