Package org.ldk.structs
Class Record
- java.lang.Object
-
- org.ldk.structs.Record
-
public class Record extends Object
A Record, unit of logging output with Metadata to enable filtering Module_path, file, line to inform on log's source
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Recordclone()Creates a copy of the Recordprotected voidfinalize()Stringget_args()The message body.Stringget_file()The source file containing the message.Levelget_level()The verbosity level of the message.intget_line()The line containing the message.Stringget_module_path()The module path of the message.voidset_args(String val)The message body.voidset_file(String val)The source file containing the message.voidset_level(Level val)The verbosity level of the message.voidset_line(int val)The line containing the message.voidset_module_path(String val)The module path of the message.
-
-
-
Method Detail
-
finalize
protected void finalize() throws Throwable
-
get_level
public Level get_level()
The verbosity level of the message.
-
set_level
public void set_level(Level val)
The verbosity level of the message.
-
get_args
public String get_args()
The message body.
-
set_args
public void set_args(String val)
The message body.
-
get_module_path
public String get_module_path()
The module path of the message.
-
set_module_path
public void set_module_path(String val)
The module path of the message.
-
get_file
public String get_file()
The source file containing the message.
-
set_file
public void set_file(String val)
The source file containing the message.
-
get_line
public int get_line()
The line containing the message.
-
set_line
public void set_line(int val)
The line containing the message.
-
-