Skip to main content

Log

Resource for obtaining application logs.

This resource uses Log4J to present the log type WARN, ERROR and FATAL.

To analyze log messages of type TRACE, DEBUG or INFO, you need to change the level of the logs in the settings to the desired level, for example, to start displaying the INFO messages, change the configuration in logs/log.xml where level="warn" just change the warn value to info, debug or trace.


debug


_log.debug(message: string) : void

Description

Print a message of type DEBUG in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
Return

( void )


_log.debug(message: string, throwable: java.lang.Object) : void

Description

Print a message of type DEBUG in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
throwablejava.lang.ObjectAlternative object to include in the log message.
Return

( void )


error


_log.error(message: string) : void

Description

Print a message of type ERROR in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
Return

( void )


_log.error(message: string, throwable: java.lang.Object) : void

Description

Print a message of type ERROR in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
throwablejava.lang.ObjectAlternative object to include in the log message.
Return

( void )


fatal


_log.fatal(message: string) : void

Description

Print a message of type FATAL in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
Return

( void )


_log.fatal(message: string, throwable: java.lang.Object) : void

Description

Print a message of type FATAL in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
throwablejava.lang.ObjectAlternative object to include in the log message.
Return

( void )


info


_log.info(message: string) : void

Description

Print a message of type INFORMATION in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
Return

( void )


_log.info(message: string, throwable: java.lang.Object) : void

Description

Print a message of type INFORMATION in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
throwablejava.lang.ObjectAlternative object to include in the log message.
Return

( void )


print


_log.print(content: char[]) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentchar[]Content that will be displayed.
Return

( void )


_log.print(content: boolean) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentbooleanContent that will be displayed.
Return

( void )


_log.print(content: char) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentcharContent that will be displayed.
Return

( void )


_log.print(content: double) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentdoubleContent that will be displayed.
Return

( void )


_log.print(content: float) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentfloatContent that will be displayed.
Return

( void )


_log.print(content: int) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentintContent that will be displayed.
Return

( void )


_log.print(content: java.lang.Object) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentjava.lang.ObjectContent that will be displayed.
Return

( void )


_log.print(content: string) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentstringContent that will be displayed.
Return

( void )


_log.print(content: long) : void

Description

Prints a direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentlongContent that will be displayed.
Return

( void )


println


_log.println(content: char[]) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentchar[]Content that will be displayed.
Return

( void )


_log.println(content: boolean) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentbooleanContent that will be displayed.
Return

( void )


_log.println(content: char) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentcharContent that will be displayed.
Return

( void )


_log.println(content: double) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentdoubleContent that will be displayed.
Return

( void )


_log.println(content: float) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentfloatContent that will be displayed.
Return

( void )


_log.println(content: int) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentintContent that will be displayed.
Return

( void )


_log.println(content: java.lang.Object) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentjava.lang.ObjectContent that will be displayed.
Return

( void )


_log.println(content: string) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentstringContent that will be displayed.
Return

( void )


_log.println(content: long) : void

Description

Prints a line with the direct message without any context in the Netuno terminal.

Attributes
NAMETYPEDESCRIPTION
contentlongContent that will be displayed.
Return

( void )


trace


_log.trace(message: string) : void

Description

Print a message of type TRACE in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
Return

( void )


_log.trace(message: string, throwable: java.lang.Object) : void

Description

Print a message of type TRACE in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
throwablejava.lang.ObjectAlternative object to include in the log message.
Return

( void )


warn


_log.warn(message: string) : void

Description

Print a message of type WARNING in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
Return

( void )


_log.warn(message: string, throwable: java.lang.Object) : void

Description

Print a message of type WARNING in the log file and in the terminal of Netuno.

Attributes
NAMETYPEDESCRIPTION
messagestringMessage that will be presented in log.
throwablejava.lang.ObjectAlternative object to include in the log message.
Return

( void )