You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change params: Seq[c.Expr[AnyRef]] to Seq[c.Expr[Any]]
Then check if we need to convert params to type Seq[AnyRef] before delegate to underlying using WILDCARD_STAR syntax. See method akka.event.Logging#format1
The text was updated successfully, but these errors were encountered:
Just hit this issue after switching from vanilla slf4j to scala-logging (2.1.2, using Scala 2.10) in order to avoid #16
I'm surprised that this isn't affecting more people - it affects my project all over the place. Does no one else log things like numbers? Short of the change suggested above by giabao, is my only option to explicitly box any numbers that are headed to a logger? That's pretty ugly :(
similar to all log level (error, warn,..).
Logger#info:
I think we must change
params: AnyRef*
toparams: Any*
And in LoggerMacros#infoMessageParams:
params: c.Expr[AnyRef]*
toc.Expr[Any]*
In LoggerMacros#logParams:
params: Seq[c.Expr[AnyRef]]
toSeq[c.Expr[Any]]
The text was updated successfully, but these errors were encountered: