DB\Jig::jot PHP Method

jot() public method

Jot down log entry
public jot ( $frame ) : null
$frame string
return null
    function jot($frame)
    {
        if ($frame) {
            $this->log .= date('r') . ' ' . $frame . PHP_EOL;
        }
    }