fuzzy_bot submitted a new resource: BungeeTrack Logger (version 0.2) - Log Player IP, Connection Time, and Connection dnsname Read more about this resource...
This is something i really need... but for some strange reason, the proxy works fine says BungeeTrack is enabled, but yet no file 'BungeeTrack.log' has been created with the logs... am I missing something?
it doesn't work on latest version of bungee, some error class not found, it goes by too fast and bungee logs are useless as it only keeps 100 or so lines
Code (Text): @Subscribe public void onLoginEvent(LoginEvent event) { getLogger().log(Level.INFO, "got login event"); try { DateFormat df = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss"); Date today = Calendar.getInstance().getTime(); String reportDate = df.format(today); PrintWriter out = new PrintWriter(new BufferedWriter( new FileWriter("BungeeTrack.txt", true))); out.println(event.getConnection().getAddress().getAddress() .toString() + " | " + event.getConnection().getName() + " | " + event.getConnection().getVirtualHost().getHostString() + " | " + reportDate); out.close(); } catch (IOException e) { e.printStackTrace(); } }
md_5 shouldn't the heart rating be called Lovely instead of Friendly? //edit fuzzy_bot Untested http://ci.PoweredByHate.net/job/BungeeTrack/
fuzzy_bot updated BungeeTrack Logger with a new update entry: Fixed for newest bungeecord Read the rest of this update entry...
fuzzy_bot updated BungeeTrack Logger with a new update entry: Update to latest bungee Read the rest of this update entry...
Hello, bungee warns on this with newer versions: Code (Text): 16:16:19 [WARNING] Listener [email protected] has registered using depreceated subscribe annotation! Please advice author to update to @EventHandler. As a server owner you may safely ignore this. Just letting you know