Enumeration for the level of outputs written by EnergyPlus. The possible values are:
LogLevels | Explanation |
---|---|
Error | Logs EnergyPlus errors and fatal errors. |
Warning | Logs in addition EnergyPlus warnings. |
Info | Logs in addition EnergyPlus informational messages. |
Verbose | Logs in addition main C function calls during initialization and shut-down. |
Debug | Logs everything, including all calls during time steps which can give large log files. |
type LogLevels = enumeration(Error "Errors", Warning "Warnings", Info "Information", Verbose "Verbose, log calls in initialization and shut-down", Debug "Verbose, log everything at each time step");