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 Record
clone()
Creates a copy of the Recordprotected void
finalize()
String
get_args()
The message body.String
get_file()
The source file containing the message.Level
get_level()
The verbosity level of the message.int
get_line()
The line containing the message.String
get_module_path()
The module path of the message.void
set_args(String val)
The message body.void
set_file(String val)
The source file containing the message.void
set_level(Level val)
The verbosity level of the message.void
set_line(int val)
The line containing the message.void
set_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.
-
-