use of org.eclipse.jkube.kit.common.util.AnsiLogger in project jkube by eclipse.
the class AbstractDockerMojo method init.
protected void init() {
log = new AnsiLogger(getLog(), useColorForLogging(), verbose, !settings.getInteractiveMode(), getLogPrefix());
logOutputSpecFactory = new LogOutputSpecFactory(useColorForLogging(), logStdout, logDate);
authConfigFactory = new AuthConfigFactory(log);
imageConfigResolver.setLog(log);
clusterAccess = new ClusterAccess(log, initClusterConfiguration());
runtimeMode = getConfiguredRuntimeMode();
}
Aggregations