-verbosity <n>
-v <n>
This allows you to change the level of verbosity of the program. The integer <n>
can be set up as:
By default the logfile is atomsk.log
but you can change it.
When running in interactive mode the verbosity level is automatically reset to 1 if it is set to 0 or 2.
To make this change permanent, you may set up a configuration file.
By default the verbosity level is set to 1.
atomsk initial.gin initial.cfg -v 3
This will write messages both on screen and in the log file atomsk.log
.
atomsk initial.gin initial.cfg -v 0
Verbosity level 0 means that Atomsk will not display any message on the screen, except questions, warnings and error messages.
atomsk initial.gin initial.cfg -v 0 &>/dev/null
Same as previous example, but all messages (including questions, warnings and errors) will be sent to /dev/null, meaning that they won't be displayed at all. Note that questions, although not displayed, will still expect an answer, and therefore will pause the execution of Atomsk. This should be reserved for cases where you are sure that Atomsk will not ask any question.