File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def __init__(
6363 self ,
6464 config : Union [LoggerConfigPM , dict , None ] = None ,
6565 config_file_path : str = _CONFIG_FILE_PATH ,
66- load_config_file : bool = True ,
66+ auto_config_file : bool = True ,
6767 auto_load : bool = False ,
6868 ):
6969 """LoggerLoader constructor method.
@@ -73,7 +73,7 @@ def __init__(
7373 dict,
7474 None ], optional): New logger config to update loaded config. Defaults to None.
7575 config_file_path (str , optional): Logger config file path. Defaults to `LoggerLoader._CONFIG_FILE_PATH`.
76- load_config_file (bool , optional): Indicates whether to load logger config file or not. Defaults to True.
76+ auto_config_file (bool , optional): Indicates whether to load logger config file or not. Defaults to True.
7777 auto_load (bool , optional): Indicates whether to load logger handlers or not. Defaults to False.
7878 """
7979
@@ -83,7 +83,7 @@ def __init__(
8383
8484 self ._load_env_vars ()
8585
86- if load_config_file :
86+ if auto_config_file :
8787 self ._load_config_file ()
8888
8989 if config :
You can’t perform that action at this time.
0 commit comments