aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/ca/AuditLogEntry.java
diff options
context:
space:
mode:
authorYuuta Liang <yuutaw@student.cs.ubc.ca>2023-11-29 14:47:14 -0800
committerYuuta Liang <yuutaw@student.cs.ubc.ca>2023-11-29 14:47:14 -0800
commit9f897f3e0351a7db7016d22b864b8b88dfd5ce06 (patch)
treef0843bdced5697c47f9552b585577a725a639f97 /src/main/model/ca/AuditLogEntry.java
parent8db775e4a4e85b55218435a1a989461f62f31f36 (diff)
downloadjca-9f897f3e0351a7db7016d22b864b8b88dfd5ce06.tar
jca-9f897f3e0351a7db7016d22b864b8b88dfd5ce06.tar.gz
jca-9f897f3e0351a7db7016d22b864b8b88dfd5ce06.tar.bz2
jca-9f897f3e0351a7db7016d22b864b8b88dfd5ce06.zip
Fix association taggings
Signed-off-by: Yuuta Liang <yuutaw@student.cs.ubc.ca>
Diffstat (limited to 'src/main/model/ca/AuditLogEntry.java')
-rw-r--r--src/main/model/ca/AuditLogEntry.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/model/ca/AuditLogEntry.java b/src/main/model/ca/AuditLogEntry.java
index a8d1929..673055a 100644
--- a/src/main/model/ca/AuditLogEntry.java
+++ b/src/main/model/ca/AuditLogEntry.java
@@ -20,6 +20,9 @@ public class AuditLogEntry {
this.action = action;
}
+ /**
+ * EFFECTS: Format log in the time\tuser\taction format.
+ */
@Override
public String toString() {
return String.format("%s\t%s\t%s", time, user, action);