Dear colleges,
I’m doing a large simulation with a great number of particles.How can I avoid to write the log file to my disk because it is too large to store. I just need to monitor the simulation process in terminal and get the results.
Kind regards,
Tong Wei
Dear @WeiTong
output to log file is optional, so as long as you do not set the log_file
parameter and do not specify the -l
flag on the command line, no log file is written to disk.
Also, I recommend to make use of the various verbosity levels we have. For monitoring the progress of a simulation, usually the log_level = "WARNING"
level is enough. You can also specify this via the command line:
allpix -c simulation.conf -v WARNING
Best regards,
Simon