newPhase method

void newPhase(
  1. String phaseName
)

Implementation

void newPhase(String phaseName) {
  final String diamonds = GenericUtils.repeatStr(
      GenericUtils.HAZARD_DIAMOND,
      Shared.HAZARD_PHASE_DIAMOND_REPS);
  _logger
      .info("\n$diamonds  [ $_lastPhase->$phaseName ]  $diamonds");
  _lastPhase = phaseName;
}