r"""Get a logger with the specified name, prefixed with 'camel.'. Args: name (str): The name to be appended to 'camel.' to create the logger. Returns: logging.Logger: A logger instance with the name 'camel.{name}'.
(name)
| 102 | |
| 103 | |
| 104 | def get_logger(name): |
| 105 | r"""Get a logger with the specified name, prefixed with 'camel.'. |
| 106 | |
| 107 | Args: |
| 108 | name (str): The name to be appended to 'camel.' to create the logger. |
| 109 | |
| 110 | Returns: |
| 111 | logging.Logger: A logger instance with the name 'camel.{name}'. |
| 112 | """ |
| 113 | return logging.getLogger(f'camel.{name}') |
| 114 | |
| 115 | |
| 116 | # Lazy configuration: Only configure logging if explicitly enabled. |
no outgoing calls
no test coverage detected