Commit d33fe141 by liyanlin

fix

parent 76b0c021
...@@ -14,7 +14,7 @@ import java.util.List; ...@@ -14,7 +14,7 @@ import java.util.List;
*/ */
@Getter @Getter
@Builder @Builder
public class ExceptionlessInput { public class ExceptionlessInput<T> {
@Builder.Default @Builder.Default
private String type = "log"; private String type = "log";
...@@ -28,5 +28,5 @@ public class ExceptionlessInput { ...@@ -28,5 +28,5 @@ public class ExceptionlessInput {
private List<String> tags; private List<String> tags;
@JsonInclude(JsonInclude.Include.NON_NULL) @JsonInclude(JsonInclude.Include.NON_NULL)
private String data; private T data;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment