
org.zeroturnaround.jenkins.util.HudsonLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liverebel-deploy Show documentation
Show all versions of liverebel-deploy Show documentation
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