Improved test

This commit is contained in:
Luca Frosini 2020-11-04 19:12:52 +01:00
parent 23b6d836a3
commit 89a6a7f404
1 changed files with 10 additions and 0 deletions

View File

@ -240,6 +240,16 @@ public class MultiContextTest extends ContextTest {
logger.debug("{} : {}", c.getHeader().getUUID(), contextCache.getContextFullNameByUUID(uuid));
}
}
Context currentContext = resourceRegistryPublisher.getCurrentContext();
logger.debug("Current context : {}", currentContext);
for(Context c : contexts) {
UUID uuid = c.getHeader().getUUID();
Context context = resourceRegistryPublisher.getContext(uuid);
String fullName = ContextCache.getInstance().getContextFullNameByUUID(uuid);
logger.debug("{} - {} : {}", uuid, fullName, context);
}
}
}