Skip to content

Commit

Permalink
make_child_logger only takes 2 args.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxJPRey committed Dec 26, 2024
1 parent b23dcf0 commit f8d8d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/geometry/core/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def add_child_logger(self, suffix: str, level: str | None = None):
Logger class.
"""
name = self.logger.name + "." + suffix
self._instances[name] = self._make_child_logger(self, name, level)
self._instances[name] = self._make_child_logger(name, level)
return self._instances[name]

def add_instance_logger(
Expand Down

0 comments on commit f8d8d13

Please sign in to comment.