infoCLn method

void infoCLn(
  1. String message
)

Rewrite the current info line with message and start the next line.

Implementation

void infoCLn(final String message)
{
  clearInfo();
  stdout.writeln(message);
}