gedai.add_file_handler🔗
- gedai.add_file_handler(fname, mode='a', encoding=None, *, verbose=None)🔗
Add a file handler to the logger.
- Parameters:
- fname
str|Path Path to the file where the logging output is saved.
- mode
str Mode in which the file is opened.
- encoding
str|None If not None, encoding used to open the file.
- verbose
int|str|bool|None Control verbosity of the logging output. If
None, use the default verbosity level ("INFO"). If a boolean,Truecorresponds to"INFO"andFalsecorresponds to"WARNING". The default isNone(interpreted as"INFO").
- fname