mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 03:19:51 +00:00
vm/gvisor: run runsc with the alsologtostderr option
$ runsc -h ... -alsologtostderr=false: send log messages to stderr ... Now gvisor doesn't send log messages on stderr by default, and if we want to see these messages, we need to specify the alsologtostderr option.
This commit is contained in:
parent
f171a40c6b
commit
bb071d588d
@ -192,6 +192,7 @@ func (inst *instance) runscCmd(add ...string) *exec.Cmd {
|
||||
"-watchdog-action=panic",
|
||||
"-network=none",
|
||||
"-debug",
|
||||
"-alsologtostderr",
|
||||
}
|
||||
if inst.cfg.RunscArgs != "" {
|
||||
args = append(args, strings.Split(inst.cfg.RunscArgs, " ")...)
|
||||
|
Loading…
Reference in New Issue
Block a user