added a "has been"- string to an error message

This commit is contained in:
delvh 2020-02-05 22:19:36 +01:00
parent 1940acb4ae
commit 9675c1d791

View File

@ -78,7 +78,7 @@ public class UserStatusChangeProcessor implements ObjectProcessor<UserStatusChan
if (connectionManager.isOnline(contact.getId())) writeProxy.write(connectionManager.getSocketId(contact.getId()), evt); if (connectionManager.isOnline(contact.getId())) writeProxy.write(connectionManager.getSocketId(contact.getId()), evt);
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
System.err.println("Could not notify online contacts of user " + evt.getId() + " that his status changed"); System.err.println("Could not notify online contacts of user " + evt.getId() + " that his status has been changed");
} }
} }