logger
trace
The parameters are passed to string.format and the result is printed to the in-game RocketRogue console
Parameters
- Name
fmt- Type
- string
- Description
Format string
- Name
...- Type
- any
- Description
Format arguments
Example
logger.trace('Hello world!')
debug
The parameters are passed to string.format and the result is printed to the in-game RocketRogue console
Parameters
- Name
fmt- Type
- string
- Description
Format string
- Name
...- Type
- any
- Description
Format arguments
Example
logger.debug('Hello world!')
info
The parameters are passed to string.format and the result is printed to the in-game RocketRogue console
Parameters
- Name
fmt- Type
- string
- Description
Format string
- Name
...- Type
- any
- Description
Format arguments
Example
logger.info('Hello world!')
warn
The parameters are passed to string.format and the result is printed to the in-game RocketRogue console
Parameters
- Name
fmt- Type
- string
- Description
Format string
- Name
...- Type
- any
- Description
Format arguments
Example
logger.warn('Hello world!')
error
The parameters are passed to string.format and the result is printed to the in-game RocketRogue console
Parameters
- Name
fmt- Type
- string
- Description
Format string
- Name
...- Type
- any
- Description
Format arguments
Example
logger.error('Hello world!')
critical
The parameters are passed to string.format and the result is printed to the in-game RocketRogue console
Parameters
- Name
fmt- Type
- string
- Description
Format string
- Name
...- Type
- any
- Description
Format arguments
Example
logger.critical('Hello world!')