The following code:
logger.Warn(
"this is a really long message, that " +
"requires to split the line",
)
Raises the following error in [email protected] (which uses simpler.org/[email protected]):
message should be a string literal or a constant (sloglint)
The message is constant even though it is built with string concatenation to split long lines.
Related to #17