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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message that will be presented in log. |
throwable | java.lang.Object | Alternative 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message that will be presented in log. |
throwable | java.lang.Object | Alternative 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message that will be presented in log. |
throwable | java.lang.Object | Alternative 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message that will be presented in log. |
throwable | java.lang.Object | Alternative 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | char[] | 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | boolean | Content that will be displayed. |
Return
( void )
_log.print(content: char) : void
Description
Prints a direct message without any context in the Netuno terminal.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
content | char | Content that will be displayed. |
Return
( void )
_log.print(content: double) : void
Description
Prints a direct message without any context in the Netuno terminal.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
content | double | Content that will be displayed. |
Return
( void )
_log.print(content: float) : void
Description
Prints a direct message without any context in the Netuno terminal.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
content | float | Content that will be displayed. |
Return
( void )
_log.print(content: int) : void
Description
Prints a direct message without any context in the Netuno terminal.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
content | int | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | java.lang.Object | Content that will be displayed. |
Return
( void )
_log.print(content: string) : void
Description
Prints a direct message without any context in the Netuno terminal.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
content | string | Content that will be displayed. |
Return
( void )
_log.print(content: long) : void
Description
Prints a direct message without any context in the Netuno terminal.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
content | long | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | char[] | 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | boolean | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | char | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | double | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | float | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | int | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | java.lang.Object | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | string | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
content | long | Content 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message that will be presented in log. |
throwable | java.lang.Object | Alternative 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message 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
NAME | TYPE | DESCRIPTION |
---|---|---|
message | string | Message that will be presented in log. |
throwable | java.lang.Object | Alternative object to include in the log message. |
Return
( void )