APGen Documentation Previous Topic: Util.XMLEncode() Next Topic: ApgLogSeverityEnum Enum Parent Topic: APGen Object Reference    APGen Object Reference
ApgLogFlags Enum
See Also:

The ApgLogFlags are part of the APG script namespace.  No special includes or constants are required to use these named values in APG scripts.

These flags are OR-able, and are applied to the Log.Flags property.  For a more thorough discussion, see the Log.Flags topic.

Name Value Meaning
apgLogNothing 0 Nothing will be logged.
apgLogFatalErrors 1 Log fatal errors (errors that halt script execution).
apgLogErrors 2 Log non-fatal errors.
apgLogWarnings 4 Log warnings.
apgLogInfo 8 Log information.
apgEventLogFatalErrors 0x10000 Log all fatal errors to the NT Event Log.
apgEventLogErrors 0x20000 Log all errors (fatal and non-fatal) to the NT Event Log.
apgLogDefault 0x0F Default log setting (though default can be set in registry)
= apgLogFatalErrors | apgLogErrors |
apgLogWarnings | apgLogInfo
apgLogFlagsAll 0x3000F All the log flags