Defines the format of the log file. May contain one of the following keywords:
TEXT1: On starting each build job, dmake prints the name of the system and command to the log file.
Also, if the command itself prints any output, then as the job finishes, dmake prints the name of the system and command to the log file again along with the command output.
Example:
host1 --> 1 job echo "Done host1" host2 --> 1 job echo "Done host2" host1 --> Job output echo "Done host1" Done host1 host2 --> Job output echo "Done host2" Done host2 |
This is the dmake default.
TEXT2: Allows dmake to serialize the output of parallel jobs, which makes the log file more readable. In this mode, dmake just prints the command once, immediately followed by the command output, as each job finishes.
Example:
echo "Done host1" Done host1 echo "Done host2" Done host2 |