TVerboseLevel
Verbosity level for build output
Declaration
Source position: fpmkunit.pp line 190
type TVerboseLevel = ( |
vlError, |
|
Display only error messages |
vlWarning, |
|
Display warning and error messages |
vlInfo, |
|
Display informational messages |
vldebug, |
|
Display debug messages |
vlCommand |
|
Display executed commands |
); |
Description
Enumeration that controls the amount of information displayed during build operations. Higher verbosity levels include all messages from lower levels plus additional detail.
- vlError
- specifies the lowest verbosity level, showing only critical error messages. This level provides minimal output, displaying only messages that indicate serious problems or failures.
- vlWarning
- displays warning messages. This level shows potential problems and issues that may not prevent compilation but could affect the build process.
- vlInfo
- displays general informational messages about the build process, including warnings and errors. This level provides feedback about what operations are being performed during compilation and installation.
- vldebug
- displays detailed debug information for troubleshooting build issues. This level provides extensive output including internal operations, variable values, and detailed execution flow information.
- vlCommand
- displays the actual commands being executed during the build process. This level shows compiler invocations, tool executions, and system commands, enabling verification and debugging of build operations.