Skip to content

Commit

Permalink
[grid] Correct reporting of purpose of class when instantiating the s…
Browse files Browse the repository at this point in the history
…ession map
  • Loading branch information
shs96c committed May 19, 2020
1 parent 7ef66bd commit aae7f24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public URI getSessionMapUri() {

public SessionMap getSessionMap() {
String clazz = config.get(SESSIONS_SECTION, "implementation").orElse(DEFAULT_SESSION_MAP);
LOG.info("Creating event bus: " + clazz);
LOG.info("Creating session map: " + clazz);
try {
Class<?> busClazz = Class.forName(clazz);
Method create = busClazz.getMethod("create", Config.class);
Expand Down

0 comments on commit aae7f24

Please sign in to comment.