Logger::Logger
Constructors
- LogFile(String fname)
- LogHandle(IO::File handle)
- LogString(String log)
Usage
LogFile is for sending logs directly to a file; it is less efficient because it opens and closes the file each time logging is done; use LogHandle for heavy logging. LogString is for logging to a string in memory. The given string is modified when it is logged to.