You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have python scripts that print outputs using "logging.info" command. These are labelled as errors in build output. This is not an error. why does bamboo label as such?
Hi Samuel,
Would you mind sharing with us details of your code implementation? This doesn't seem to be the expected behavior.
thanks
import logging
logging.basicConfig(level=logging.INFO, format='%(asctime)-15s - %(levelno)s - %(message)s')
logging.info("Starting Work at: {0}".format(path))
logging.info("Finished Work with outputs at:".format(output_path))
This is my output in bamboo and is highlighted in red in logs:
2018-07-18 11:20:50,804 - 20 - Starting Work at: C:\work
2018-07-18 11:20:50,835 - 20 - Finished Work with outputs at: C:\output
It gets populated in the error summary.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Guys, is there any follow up here? I am experiencing the same error and I am looking for a solution because it looks like it's an issue with Bamboo.
Cheers, Krzysztof
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hiya, bamboo thinks anything that gets printed to stderr is an "error" so appears in the error red text.
By default, python's logging module prints messages to stderr.
You can change that to stdout by using `stream=sys.stdout` as a parameter to `logging.BasicConfig()`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.