Added span range checks and breadcrumbs

This commit is contained in:
M66B
2021-05-14 19:20:01 +02:00
parent 0eb5501137
commit f32b19fc9e
2 changed files with 50 additions and 1 deletions

View File

@@ -274,6 +274,12 @@ public class Log {
}
}
static void breadcrumb(String name, String key, String value) {
Map<String, String> crumb = new HashMap<>();
crumb.put(key, value);
breadcrumb(name, crumb);
}
static void breadcrumb(String name, Map<String, String> crumb) {
try {
Map<String, Object> ocrumb = new HashMap<>();