Log more os information in error report

This commit is contained in:
crschnick 2023-04-03 17:19:01 +00:00
parent 289d4d89cc
commit b5268a4a76

View file

@ -27,6 +27,8 @@ public class SentryErrorHandler {
options.setEnableShutdownHook(false);
options.setProguardUuid(AppProperties.get().getBuildUuid().toString());
options.setTag("os", System.getProperty("os.name"));
options.setTag("osVersion", System.getProperty("os.version"));
options.setTag("arch", System.getProperty("os.arch"));
});
}