Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,551,894
Community Members
 
Community Events
184
Community Groups

Python "logging.info" is outputted as an error in build output

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?

1 answer

0 votes
Gabriel Ribeiro
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jul 19, 2018

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.

@Samuel Chow @Gabriel Ribeiro 

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

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()`

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events