Fix javadoc errors/warnings
By: Celtic Minstrel <celtic.minstrel.ca@some.place>
This commit is contained in:
@@ -5,17 +5,17 @@ import java.util.logging.LogRecord;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
* The PluginLogger class is a modified {@link java.util.logging.Logger} that prepends all logging calls with the name of the
|
||||
* plugin doing the logging.
|
||||
* The PluginLogger class is a modified {@link Logger} that prepends all logging calls with the name of the
|
||||
* plugin doing the logging. The API for PluginLogger is exactly the same as {@link Logger}.
|
||||
*
|
||||
* The API for PluginLogger is exactly the same as {@link java.util.logging.Logger}.
|
||||
* @see Logger
|
||||
*/
|
||||
public class PluginLogger extends Logger {
|
||||
private String pluginName;
|
||||
|
||||
/**
|
||||
* Creates a new PluginLogger that extracts the name from a plugin.
|
||||
* @param context
|
||||
* @param context A reference to the plugin
|
||||
*/
|
||||
public PluginLogger(Plugin context) {
|
||||
super(context.getClass().getCanonicalName(), null);
|
||||
|
||||
Reference in New Issue
Block a user