Commit 733ca04a authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Changed Timers to include a name for easier identification.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1065 b35dd754-fafc-0310-a699-88a17e54d16e
parent ff4b8b34
...@@ -50,7 +50,7 @@ public class AuditorImpl implements Auditor { ...@@ -50,7 +50,7 @@ public class AuditorImpl implements Auditor {
/** /**
* Timer to save queued logs to the XML file. * Timer to save queued logs to the XML file.
*/ */
private Timer timer = new Timer(); private Timer timer = new Timer("Auditor");
private SaveQueuedPacketsTask saveQueuedPacketsTask; private SaveQueuedPacketsTask saveQueuedPacketsTask;
public AuditorImpl(AuditManager manager) { public AuditorImpl(AuditManager manager) {
......
...@@ -124,7 +124,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha ...@@ -124,7 +124,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha
* Timer to monitor chatroom participants. If they've been idle for too long, probe for * Timer to monitor chatroom participants. If they've been idle for too long, probe for
* presence. * presence.
*/ */
private Timer timer = new Timer(); private Timer timer = new Timer("MUC cleanup");
/** /**
* Flag that indicates if the service should provide information about locked rooms when * Flag that indicates if the service should provide information about locked rooms when
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment