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();
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.