All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zeroturnaround.jenkins.util.HudsonLogger Maven / Gradle / Ivy

Go to download

LiveRebel Plugin helps to run updates to your JEE containers faster. LiveRebel is a tool for hot updates without downtime, lost sessions and OutOfMemoryErrors. You have to have a running LiveRebel Command Center to use this plugin.

The newest version!
package org.zeroturnaround.jenkins.util;

import hudson.model.BuildListener;
import org.zeroturnaround.liverebel.plugins.PluginLogger;

public class HudsonLogger implements PluginLogger {

  private final BuildListener listener;

  public HudsonLogger(BuildListener listener) {this.listener = listener;}

  public void log(String message) {
    listener.getLogger().println(message);
  }

  public void error(String error) {
    listener.getLogger().println(error);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy