pop method

Log pop()

Implementation

Log pop() {
  Log lastLog = _stack.last;
  _stack.removeLast();
  return lastLog;
}