In my project I wanted to log messages using predefined categories. Traditionally, I do it via classes (if the messages are specific to the functions provided by that class):
public class LogWrapper {
public static final String EVENT_ERROR = "Error";
public static final String EVENT_LOAD = "Load"