= Options when instanciating MutekS = = WARNING = /!\ Those flags are not yet implemented in DSX'2008. == Verbosity == DsxLogging facility will output log messages only if more important than current selected level. You may override this level by setting verbosity e.g.: {{{ muteks = MutekS( verbosity = "TRACE" ) }}} == Stack usage tracing == MutekS has fixed limited stack depth for all functions (defined at [wiki:DsxTaskModel#SoftwareTask software task implementation] declaration). Rather than trying different values and watching your software crash, you may want to put a big stack space, and watch which part of the available space was actually used. This can be archieved setting `STACK_TRACE` flag: {{{ muteks = MutekS( features = [ "STACK_TRACE" ] ) }}}