push method

void push(
  1. Log log
)

Implementation

void push(Log log) {
  _stack.addLast(log);
  if (autoPrint) {
    print(log);
  }
}