summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/plugin/java/annotation/LogPrefix.java
blob: e8d6ed4d750ccc636491d1a08ca3d365b24a495b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.bukkit.plugin.java.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 *  Part of the plugin annotations framework.
 *  <p>
 *  Represents the prefix used for the plugin's log entries, defaults to plugin name.
 */

@Target(ElementType.TYPE)
public @interface LogPrefix {

    public String value();
}