frarch.utils.logging.create_logger module#

frarch.utils.logging.create_logger.create_logger_file(log_file_path: Union[str, pathlib.Path], debug: bool = False, stdout: bool = False) None[source]#

Create logger file in file path.

Parameters
  • log_file_path (Union[str, Path]) – path to logger file.

  • debug (bool, optional) – log debug statements. Defaults to False.

  • stdout (bool, optional) – log to stdout as well as to the log file. Defaults to False.

Raises