You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- """
- Log utils. Used to manage the output format of AutoGL
- """
-
- import logging
-
-
- def get_logger(name):
- """
- Get the logger of given name
-
- Parameters
- ----------
- name: str
- The name of logger
-
- Returns
- -------
- logger: Logger
- The logger generated
- """
- return logging.getLogger(name)
|