aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/ca/AuditLogEntry.java
diff options
context:
space:
mode:
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);