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
I'm using the Bamboo java specs to run Jobs and ScriptTaks using the @BambooSpec class.
I found that bamboo provides it's own logger from here: https://docs.atlassian.com/bamboo-specs/6.3.1/com/atlassian/bamboo/specs/util/Logger.html.
I tried implementing this logger. In one of the classes that returns a Job with a number of scripttasks.
But my logs are not showing up in the bamboo build logs.
What am I doing wrong?
I'm using it like this:
import com.atlassian.bamboo.specs.util.Logger;
(in class): private static final Logger log = Logger.getLogger(DockerJobManager.class);
(the call): log.info("This is a warning!!!");