Log 객체 로그 객체는 아래와 같은 필드를 가지고 있다. @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private Long userId; @Enumerated(value = EnumType.STRING) private TargetType targetType; private Long targetId; @Enumerated(value = EnumType.STRING) private RequestMethod requestMethod; private String requestUri; private ActivityType activityType; private ..