1
0

Add qemu stdout/stderr to log; Implements database versioning

This commit is contained in:
2019-08-14 22:59:34 +00:00
parent 8430eea47f
commit 35dfe2a361
2 changed files with 102 additions and 2 deletions

6
log.go
View File

@ -129,5 +129,11 @@ func logDumpHandler(db *sql.DB, id int) (err error) {
fmt.Printf("Test output:\n%s\n", l.Test.Output)
fmt.Println()
fmt.Printf("Qemu stdout:\n%s\n", l.Stdout)
fmt.Println()
fmt.Printf("Qemu stderr:\n%s\n", l.Stderr)
fmt.Println()
return
}