Prefix all (intentional) output properly.
This commit is contained in:
parent
70dead3fb9
commit
ccbd6bf45e
13 changed files with 60 additions and 48 deletions
|
|
@ -15,6 +15,7 @@ import org.dynmap.web.HttpStatus;
|
|||
|
||||
public abstract class FileHandler implements HttpHandler {
|
||||
protected static final Logger log = Logger.getLogger("Minecraft");
|
||||
protected static final String LOG_PREFIX = "[dynmap] ";
|
||||
private byte[] readBuffer = new byte[40960];
|
||||
|
||||
private static Map<String, String> mimes = new HashMap<String, String>();
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ import org.json.simple.parser.JSONParser;
|
|||
|
||||
public class SendMessageHandler implements HttpHandler {
|
||||
protected static final Logger log = Logger.getLogger("Minecraft");
|
||||
protected static final String LOG_PREFIX = "[dynmap] ";
|
||||
|
||||
private static final JSONParser parser = new JSONParser();
|
||||
public Event<Message> onMessageReceived = new Event<SendMessageHandler.Message>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue