Extension packages should use this as the default of their own info_level
argument, so that a constructor or setter of theirs follows the option like
mizer's own do:
newFooParams <- function(species_params, ...,
info_level = default_info_level()) {
newMultispeciesParams(species_params, info_level = info_level, ...)
}
Take the argument explicitly like that rather than hard-coding a value in the
call, which would make a user's own info_level collide with it.