Skip to content

Commit

Permalink
hide some message back to fine level
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelendik committed Dec 6, 2019
1 parent 9b3617d commit e492431
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,20 @@ public MobileRemoteProxy(RegistrationRequest request, GridRegistry registry) {
@Override
public TestSession getNewSession(Map<String, Object> requestedCapability) {

LOGGER.info("Trying to create a new session on node " + this);
LOGGER.fine("Trying to create a new session on node " + this);

if (isDown()) {
return null;
}

if (!hasCapability(requestedCapability)) {
LOGGER.info("Node " + this + " has no matching capability");
LOGGER.fine("Node " + this + " has no matching capability");
return null;
}

// any slot left at all?
if (getTotalUsed() >= config.maxSession) {
LOGGER.info("Node " + this + " has no free slots");
LOGGER.fine("Node " + this + " has no free slots");
return null;
}

Expand Down

0 comments on commit e492431

Please sign in to comment.