Is it possible to turn off or reroute the default socsim output? I am running a large number of simulations (24 sims of 200-300 years) in a script using nohup and all of that is leading to a massively bloated nohup.out file. I already have a set of diagnostic tools to check the simulations for things like population pyramids and the like. While that can be nice for interactive testing, its kind of unnecessary bloat when actually running full simulations for an analytical project.
I have tried to use suppressMessages and suppressWarnings in R but it seems like the output is coming directly from the C++ code so this has no effect. Maybe it would be possible to have an argument in socsim for different levels of verbosity?
Is it possible to turn off or reroute the default socsim output? I am running a large number of simulations (24 sims of 200-300 years) in a script using
nohupand all of that is leading to a massively bloatednohup.outfile. I already have a set of diagnostic tools to check the simulations for things like population pyramids and the like. While that can be nice for interactive testing, its kind of unnecessary bloat when actually running full simulations for an analytical project.I have tried to use
suppressMessagesandsuppressWarningsin R but it seems like the output is coming directly from the C++ code so this has no effect. Maybe it would be possible to have an argument insocsimfor different levels of verbosity?