-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete logging implementation and add logEntries field #76
Complete logging implementation and add logEntries field #76
Conversation
@@ -77,6 +84,10 @@ public JsonAdaptedPerson(Person source) { | |||
tags.addAll(source.getTags().stream() | |||
.map(JsonAdaptedTag::new) | |||
.collect(Collectors.toList())); | |||
logEntries.addAll(source.getLogEntries() | |||
.getLogs().stream() | |||
.map(Log::toString) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
<Label fx:id="email" styleClass="label-bright" text="\$email" /> | ||
<Label fx:id="remark" styleClass="label-bright" text="\$remark" /> | ||
<Label fx:id="nric" styleClass="label-bright" text="\$nric" /> | ||
</VBox> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
||
assertFalse(logCommand1.equals(logCommand2)); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ready to merge
1eb9963
into
AY2425S1-CS2103T-W11-1a:master
close #70