Skip to main content

LogLevel

const LogLevel: object

Defined in: types.ts:386

The amount of information to log when generating scaffold. When not none, the selected level will be the lowest level included.

For example, level info will include info, warning and error, but not debug; and warning will only show warning and error, but not info or debug.

Type Declaration

none

readonly none: "none" = "none"

Silent output

debug

readonly debug: "debug" = "debug"

Debugging information. Very verbose and only recommended for troubleshooting.

info

readonly info: "info" = "info"

The regular level of logging. Major actions are logged to show the scaffold progress.

Default

warning

readonly warning: "warning" = "warning"

Warnings such as when file fails to replace token values properly in template.

error

readonly error: "error" = "error"

Errors, such as missing files, bad replacement token syntax, or un-writable directories.

Default

info