Hello. After run ssh Task I see all executed code in logs of two times.
Example:
simple 21-Mar-2019 08:20:25 Starting task 'code deploy' of type 'com.atlassian.bamboo.plugins.bamboo-scp-plugin:sshtask'
simple 21-Mar-2019 08:20:25 Connecting to 22.22.22.22 on port: 22
simple 21-Mar-2019 08:20:26 Executing [
simple 21-Mar-2019 08:20:26 #!/bin/bash
simple 21-Mar-2019 08:20:26 set -eu
simple 21-Mar-2019 08:20:26 echo "Start"
simple 21-Mar-2019 08:20:26 ......................................
simple 21-Mar-2019 08:20:26 echo "End"
simple 21-Mar-2019 08:20:26 ]
build 21-Mar-2019 08:20:26 Start
build 21-Mar-2019 08:20:26 ......................................
build 21-Mar-2019 08:22:13 End
simple 21-Mar-2019 08:22:23 [
simple 21-Mar-2019 08:22:23 #!/bin/bash
simple 21-Mar-2019 08:22:23 set -eu
simple 21-Mar-2019 08:22:23 echo "Start"
simple 21-Mar-2019 08:22:23 ......................................
simple 21-Mar-2019 08:22:23 echo "End"
simple 21-Mar-2019 08:22:23 ] has finished.
simple 21-Mar-2019 08:22:23 Result: exit code = 0
simple 21-Mar-2019 08:22:23 Finished task 'code deploy' with result: Success
My deploy script have ~ 100 line code, so I see 100 line on start and 100 line at end. And in middle I see output of my script. Any time I need go to full log that I can see last output of my script or error stage.
Can I disable print second output of code executed? Or maybe disable print executed code at all?
Hi @Sergio
Can I disable print second output of code executed? Or maybe disable print executed code at all?
Unfortunately, you cannot. The logging feature is configured in the plugin source code and therefore needs to be improved by our developers.
I've opened an improvement request to report this:
The only workaround I can think is putting all your commands in just one line or calling a script instead of adding all the commands in the SSH task. That would cause the printing to use only one line in the build logs which would reduce the noise a lot.
I hope this is helpful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.