Log a few more things. Added BiomeCommands to doc printer.

This commit is contained in:
Wizjany
2013-01-02 02:11:42 -05:00
parent e09a0c64ad
commit 76a77f04e7
3 changed files with 52 additions and 8 deletions

View File

@ -30,11 +30,30 @@ import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Logging {
public enum LogMode {
POSITION, // Player position
REGION, // Region selection
ORIENTATION_REGION, // player orientation and Region selection
PLACEMENT, // Either the player position or pos1, depending on the placeAtPos1 flag
ALL // Log all information available
/**
* Player position
*/
POSITION,
/**
* Region selection
*/
REGION,
/**
* Player orientation and region selection
*/
ORIENTATION_REGION,
/**
* Either the player position or pos1, depending on the placeAtPos1 flag
*/
PLACEMENT,
/**
* Log all information available
*/
ALL
}
/**