ReporterApi

trait ReporterApi[Api <: RuntimeApi]

Small façade API to log messages to console.

Type parameters:
Api

an instance of RuntimeApi, needed to share the same ReporterApi#Position type.

class Object
trait Matchable
class Any

Value members

Abstract methods

def echo(message: String): Unit

Equivalent of log.info(...)

Equivalent of log.info(...)

Value parameters:
message

the message to print

def warning(message: String, pos: Position): Unit

Equivalent of log.warn(...)

Equivalent of log.warn(...)

Value parameters:
message

the message to print

Abstract fields

protected val runtime: Api