diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/LayoutServiceImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/LayoutServiceImpl.java index e002152a83..2842eee911 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/LayoutServiceImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/LayoutServiceImpl.java @@ -119,7 +119,7 @@ public class LayoutServiceImpl implements LayoutService { if (!dynamicBindings.isEmpty()) { for (String mustacheKey : dynamicBindings) { String key = mustacheKey.trim(); - + log.debug("Mustache key extracted from dsl for pageid {} is {}", pageId, key); // Extract all the words in the dynamic bindings Matcher matcher = pattern.matcher(key); @@ -127,7 +127,7 @@ public class LayoutServiceImpl implements LayoutService { String word = matcher.group(); String[] subStrings = word.split(Pattern.quote(".")); - + log.debug("After splitting mustache key, the substrings for key {} are {}", key, subStrings); // We are only interested in the top level. e.g. if its Input1.text, we want just Input1 dynamicBindingNames.add(subStrings[0]); }