LogLevel
constLogLevel: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
readonlynone:"none"="none"
Silent output
debug
readonlydebug:"debug"="debug"
Debugging information. Very verbose and only recommended for troubleshooting.
info
readonlyinfo:"info"="info"
The regular level of logging. Major actions are logged to show the scaffold progress.
Default
warning
readonlywarning:"warning"="warning"
Warnings such as when file fails to replace token values properly in template.
error
readonlyerror:"error"="error"
Errors, such as missing files, bad replacement token syntax, or un-writable directories.
Default
info