com.thoughtworks.go.plugin.api.logging.Logger Maven / Gradle / Ivy
/*************************GO-LICENSE-START*********************************
* Copyright 2014 ThoughtWorks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*************************GO-LICENSE-END***********************************/
package com.thoughtworks.go.plugin.api.logging;
import com.thoughtworks.go.plugin.internal.api.LoggingService;
import java.lang.reflect.Field;
/**
* Logger for use by plugin developers.
*
* @author Go Team
* @see Go Plugin Documentation
*/
public class Logger {
private String pluginId;
private static LoggingService loggingService;
private final String loggerName;
public static Logger getLoggerFor(Class loggerClass) {
String id = null;
try {
Class> defaultGoPluginActivator = loggerClass.getClassLoader().loadClass("com.thoughtworks.go.plugin.activation.DefaultGoPluginActivator");
id = (String) getStaticField(defaultGoPluginActivator, "pluginId");
} catch (Exception e) {
id = "UNKNOWN";
System.err.println("Could not find pluginId for logger: " + loggerClass.toString());
}
return new Logger(loggerClass.getName(), id);
}
public static void initialize(LoggingService loggingService) {
Logger.loggingService = loggingService;
}
private Logger(String loggerName, String pluginId) {
this.loggerName = loggerName;
this.pluginId = pluginId;
}
/**
* Messages to be logged in debug mode.
*
* @param message a string containing the message to be logged.
*/
public void debug(String message) {
if (loggingService == null) {
System.out.println(message);
return;
}
loggingService.debug(pluginId, loggerName, message);
}
/**
* Messages to be logged in debug mode.
*
* @param message a string containing the message to be logged.
* @param throwable
*/
public void debug(String message, Throwable throwable) {
if (loggingService == null) {
System.out.println(message);
return;
}
loggingService.debug(pluginId, loggerName, message, throwable);
}
/**
* Messages to be logged in info mode.
*
* @param message a string containing the message to be logged.
*/
public void info(String message) {
if (loggingService == null) {
System.out.println(message);
return;
}
loggingService.info(pluginId, loggerName, message);
}
/**
* Messages to be logged in info mode.
*
* @param message a string containing the message to be logged.
* @param throwable
*/
public void info(String message, Throwable throwable) {
if (loggingService == null) {
System.out.println(message);
return;
}
loggingService.info(pluginId, loggerName, message, throwable);
}
/**
* Messages to be logged in warn mode.
*
* @param message a string containing the message to be logged.
*/
public void warn(String message) {
if (loggingService == null) {
System.err.println(message);
return;
}
loggingService.warn(pluginId, loggerName, message);
}
/**
* Messages to be logged in warn mode.
*
* @param message a string containing the message to be logged.
* @param throwable
*/
public void warn(String message, Throwable throwable) {
if (loggingService == null) {
System.err.println(message);
return;
}
loggingService.warn(pluginId, loggerName, message, throwable);
}
/**
* Messages to be logged in error mode.
*
* @param message a string containing the message to be logged.
*/
public void error(String message) {
if (loggingService == null) {
System.err.println(message);
return;
}
loggingService.error(pluginId, loggerName, message);
}
/**
* Messages to be logged in error mode.
*
* @param message a string containing the message to be logged.
* @param throwable
*/
public void error(String message, Throwable throwable) {
if (loggingService == null) {
System.err.println(message);
return;
}
loggingService.error(pluginId, loggerName, message, throwable);
}
private static Object getStaticField(Class kls, String name) {
try {
Field field = kls.getDeclaredField(name);
field.setAccessible(true);
return field.get(null);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy