attachStart method

LogBuilder attachStart(
  1. String name
)

Starts a new attachment section with the specified name.

Implementation

LogBuilder attachStart(String name) {
  _builder = "$_builder$_startingSign$name$_attachingSeparator[ ";
  return this;
}