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!!!");