Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions samcli/lib/providers/sam_function_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ def get_resources_by_stack_path(self, stack_path: str) -> Dict:

def _set_templates_changed(self, paths: List[str]) -> None:
LOG.info(
"A change got detected in the templates %s. Mark templates as changed to be reloaded in the next invoke",
"A change has been detected in the templates %s. Marking templates as changed to be reloaded in the next invoke",
", ".join(paths),
)
self.is_changed = True
Expand All @@ -910,7 +910,7 @@ def _refresh_loaded_functions(self) -> None:
"""
Reload the stacks, and lambda functions from template files.
"""
LOG.debug("A change got detected in one of the stack templates. Reload the lambda function resources")
LOG.debug("A change has been detected in one of the stack templates. Reload the lambda function resources")
self._stacks = []

for template_file in self.parent_templates_paths:
Expand Down