mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
Merge remote-tracking branch 'origin/improve/logger_add_error_code' into add_scanner_component
This commit is contained in:
commit
290795d3aa
|
@ -11,6 +11,8 @@ public interface LacertaLogger {
|
|||
void trace(String tag, String message);
|
||||
void fatal(String tag, String message);
|
||||
|
||||
void e_code(String errorId);
|
||||
|
||||
String buildKVMessage(KeyValueLog... logs);
|
||||
// With name
|
||||
String buildKVMessage(String name, KeyValueLog... logs);
|
||||
|
|
|
@ -43,6 +43,11 @@ public class LacertaLoggerImpl implements LacertaLogger{
|
|||
Log.wtf(tag, message);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void e_code(String errorId) {
|
||||
Log.e("ErrorReport", "An error occurred. Searchable error ID: " + errorId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String buildKVMessage(KeyValueLog... logs) {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
|
|
Loading…
Reference in New Issue
Block a user