Notes concerning the log files
While running, run_erl (as stated earlier) sends all output,
uninterpreted, to a log file. The file is called
, where N is a number. When the log is "full",
default after 100KB, run_erl starts to log in file
, until N reaches a certain number (default
5), where after N starts at 1 again and the oldest files start
getting overwritten. If no output comes from the erlang shell, but
the erlang machine still seems to be alive, an "ALIVE" message is
written to the log, it is a timestamp and is written, by default,
after 15 minutes of inactivity. Also, if output from erlang is
logged but it's been more than 5 minutes (default) since last time
we got anything from erlang, a timestamp is written in the
log. The "ALIVE" messages look like this:
]]>
while the other timestamps look like this:
]]>
The is the date and time the message is
written, default in local time (can be changed to GMT if one wants
to) and is formatted with the ANSI-C function
using the format string , which produces
messages on the line of , this can be changed, see below.