Compare commits
1 Commits
a9d0aea6eb
...
main
Author | SHA1 | Date | |
---|---|---|---|
f783f0aba3 |
@ -31,7 +31,7 @@ public class Errorer {
|
|||||||
|
|
||||||
public void reportException(Exception e, Object o, String... additionalData) {
|
public void reportException(Exception e, Object o, String... additionalData) {
|
||||||
String stackTrace = getErrorStackTrace(e);
|
String stackTrace = getErrorStackTrace(e);
|
||||||
String className = o.getClass().getName();
|
String className = (o != null) ? o.getClass().getName() : "Static Usage";
|
||||||
String errorText = e.getClass().getName() + " in " + className;
|
String errorText = e.getClass().getName() + " in " + className;
|
||||||
|
|
||||||
ZonedDateTime warsawTime = ZonedDateTime.now(ZoneId.of("Europe/Warsaw"));
|
ZonedDateTime warsawTime = ZonedDateTime.now(ZoneId.of("Europe/Warsaw"));
|
||||||
|
Reference in New Issue
Block a user