Gradle,如何将失败的日志打印到文件

时间:2017-05-25 10:34:10

标签: android gradle

命令是gradlew assembleQW> a.txt

成功时,日志全部在a.txt

但是当失败时,失败的原因会在控制台中打印

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

使用 Below code will solve your logic: a=[0, -12, 4, 18, 9, 10, 11, -23] l=[] for i,x in enumerate(a): print "index : ",i,"data : ",x,">>>",i%2 if i%2!=1: l.append(x) 仅将>从控制台重定向到文件。如果您还要重定向STDOUT,则需要使用STDERR

请参阅windowsunix

例如:

2>