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.