Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *@author notjacob
- */
- public static void log(String msg, LogType type, Date date) {
- String finalm = "[CORE2] " + "[" + format.format(date) + "] " + "[" + type + "] " + msg;
- try {
- PrintStream ps = new PrintStream(f);
- ps.println(finalm);
- System.out.println("[CORE2] " + "[" + format.format(date) + "] " + "[" + type + "] " + msg);
- ps.flush();
- ps.close();
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment