Hi,
I'm using a macro that calls the info method on the
scala.reflect.macros.FrontEnds trait as defined below.
/** Emits an informational message, suppressed unless `-verbose` or
`force=true`.
* Use `enclosingPosition` if you're in doubt what position to pass
to `pos`.
*/
def info(pos: Position, msg: String, force: Boolean): Unit
and here is the call:
context.info(expr.pos, msg, force = false)
This is creating info markers and underlining the code, which is
correct, however I can't disable them on Eclipse. I've checked my
compiler configurations on both, the project and the workspace and both
have verbose disabled. The logging level is set to INFO.
The scalac on cmd line will display the messages only when -verbose
option is enabled, as per the docs above.
Is there anything else I need to check on Eclipse to disable those markers?
I'm running the latest Scala IDE nighlty/Indigo/2.10.
Thanks and Regards,
Renato