diff --git a/android/build.gradle b/android/build.gradle index b98da8bf7e..71a36bc532 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -569,8 +569,11 @@ def runBreakpadDumpSyms = { buildType -> commandLine './dump_syms' args cmdArgs standardOutput = new BufferedOutputStream(new FileOutputStream(new File(outputDir, output))) + errorOutput = new ByteArrayOutputStream() + doLast { + println ("Exec error output: " + errorOutput.toString()) + } } - } } }