Go backward to pwd.
Go up to Loading and interacting with the file system.

log
---

The log command turns on and off logging to a file.  When Soar is logging to
a file, everything you type and everything Soar prints is written to the file
(in addition to the screen).

SYNTAX

(log ["filename" [:append]])


To start a new log file, type (log "filename").
To append to an existing file, type (log "filename" :append).
To stop logging to the current file, type (log).

EXAMPLE

Soar> log "blocks.trace" 

Soar> run 

...

Soar> log