logRetriever doesn't support the "fileName" attribute
Hi,
I am using BuildToolkit 5.0.2 to run RTC Ant tasks, but I got below error when try to call logRetriever Task:
logRetriever doesn't support the "fileName" attribute
My code for retrive the log is:
<logPublisher repositoryAddress="${repositoryAddress}"
userId="${userId}"
passwordFile="${passwordFile}"
buildResultUUID="${buildResultUUID}"
filePath="console.log"
label="Jenkins automation test log"
verbose="true" />
Can anyone please advise is it an usage error or anything I should do to retrieve the log from RTC server ?
Thanks.
David Hou
I am using BuildToolkit 5.0.2 to run RTC Ant tasks, but I got below error when try to call logRetriever Task:
logRetriever doesn't support the "fileName" attribute
My code for retrive the log is:
<logPublisher repositoryAddress="${repositoryAddress}"
userId="${userId}"
passwordFile="${passwordFile}"
buildResultUUID="${buildResultUUID}"
filePath="console.log"
label="Jenkins automation test log"
verbose="true" />
Can anyone please advise is it an usage error or anything I should do to retrieve the log from RTC server ?
Thanks.
David Hou
Comments
Martha (Ruby) Andrews
JAZZ DEVELOPER May 13 '15, 2:40 p.m.Your question is about logRetriever and fileName but the snippet is logPublisher and filePath. Is this the wrong snippet?
Martha (Ruby) Andrews
JAZZ DEVELOPER May 13 '15, 2:44 p.m.Your question is about logRetriever and fileName but the snippet is logPublisher and filePath. Is this the wrong snippet?
David Hou
May 14 '15, 11:34 a.m.@Martha, Sorry for paste the wrong snippet. Should be like below:
<logRetriever repositoryAddress="${repositoryAddress}"
userId="${userId}"
passwordFile="${passwordFile}"
buildResultUUID="${childBuildResultUUID}"
fileName="console.log"
destFileName="console.log"
verbose="true" />
David