Skip to content

Commit

Permalink
Change log level of context switch
Browse files Browse the repository at this point in the history
  • Loading branch information
JimMadge committed Jun 17, 2024
1 parent 2515dc9 commit 895c61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_safe_haven/context/context_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def selected(self) -> str | None:
def selected(self, context_name: str | None) -> None:
if context_name in self.available or context_name is None:
self.selected_ = context_name
self.logger.debug(f"Switched context to '{context_name}'.")
self.logger.info(f"Switched context to '{context_name}'.")
else:
msg = f"Context '{context_name}' is not defined."
raise DataSafeHavenParameterError(msg)
Expand Down

0 comments on commit 895c61c

Please sign in to comment.