mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 15:47:02 +02:00
Add debug logging
This commit is contained in:
parent
3a473eaa0e
commit
77d53441c0
1 changed files with 4 additions and 1 deletions
|
@ -569,8 +569,11 @@ def runBreakpadDumpSyms = { buildType ->
|
||||||
commandLine './dump_syms'
|
commandLine './dump_syms'
|
||||||
args cmdArgs
|
args cmdArgs
|
||||||
standardOutput = new BufferedOutputStream(new FileOutputStream(new File(outputDir, output)))
|
standardOutput = new BufferedOutputStream(new FileOutputStream(new File(outputDir, output)))
|
||||||
|
errorOutput = new ByteArrayOutputStream()
|
||||||
|
doLast {
|
||||||
|
println ("Exec error output: " + errorOutput.toString())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue