The FileHandler class sends logging output to a disk file.
It inherits the output functionality from StreamHandler.
classFileHandler(
filename[, mode])
Returns a new instance of the FileHandler class. The specified
file is opened and used as the stream for logging. If mode is
not specified, 'a' is used. By default, the file grows
indefinitely.