Set activation date, add logs

This commit is contained in:
Manfred Karrer 2018-10-02 22:58:38 -05:00
parent 984c305b77
commit 32bfe0eb8e
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
2 changed files with 3 additions and 1 deletions

View File

@ -236,6 +236,8 @@ public class ArbitratorManager {
user.addAcceptedMediator(getMediator(a)
);
});
log.info("Available arbitrators: {}", arbitratorsObservableMap.keySet());
}
// TODO we mirror arbitrator data for mediator as long we have not impl. it in the UI

View File

@ -50,7 +50,7 @@ public class ArbitratorSelection {
static {
try {
//TODO set activation data to 1 month after release
Date activationDate = new SimpleDateFormat("dd/MM/yyyy").parse("1/10/2018");
Date activationDate = new SimpleDateFormat("dd/MM/yyyy").parse("20/11/2018");
isNewRuleActivated = new Date().after(activationDate);
} catch (ParseException e) {
e.printStackTrace();