Skip to content

Commit

Permalink
Fix ListingSessionClientST / 2
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge committed Mar 11, 2024
1 parent 05915a9 commit 8ad6c94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void performPostLoginChecks() throws DataException, DAOException, IOExcep

int availableClients = controller.getAvailableClientsOfCurrentUser().size();
Client currentClient = controller.getCurrentSessionClient();
logger.debug("availableClients:" + availableClients + ", currentClient: " + currentClient);
logger.info("availableClients: " + availableClients + ", currentClient: " + currentClient);
if (availableClients > 1 && Objects.isNull(currentClient)) {
controller.showClientSelectDialog();
} else {
Expand Down

0 comments on commit 8ad6c94

Please sign in to comment.