We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why there is only AnyRef* in API?
def debug(message: String, params: AnyRef*): Unit = macro LoggerMacros.debugMessageParams
is there any way to log something like this:
val i1 = 2 val i2 = 3 logger.debug("i1={} and i2={}", i1, i2)
whitout using toString method on i1 and i2?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why there is only AnyRef* in API?
is there any way to log something like this:
whitout using toString method on i1 and i2?
The text was updated successfully, but these errors were encountered: