I have a custom repository plugin that many of my Bamboo plans use. In a job's log file, the source checkout step has two lines:
09-Sep-2011 10:33:51 | Updating source code to revision: 2011/09/09 10:30:47 |
09-Sep-2011 10:34:13 | Updated source code to revision: 2011/09/09 10:30:47 |
My plugin shells out to another application that prints a lot of output to stdout. Is there a way I can get that output shown in the job's log file?
You should be able to get the plan result key from BuildContext passed to retrieveSourceCode method.
Use it to retrieve the build logger from BuildLoggerManager buildLoggerManager.getBuildLogger(planResultKey).
Then, pump the output from the process you have spawned and log the lines using buildLogger.addBuildLogEntry();
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.