aboutsummaryrefslogtreecommitdiff
path: root/job/job.go
diff options
context:
space:
mode:
Diffstat (limited to 'job/job.go')
-rw-r--r--job/job.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/job/job.go b/job/job.go
index e15b2eb..4241844 100644
--- a/job/job.go
+++ b/job/job.go
@@ -10,5 +10,5 @@ type Job struct {
}
func (job Job) String() string {
- return fmt.Sprintf("Name: \"%s\", Timestamp: \"%d\", Success: \"%t\"", job.Name, job.Timestamp, job.Success)
+ return fmt.Sprintf("Job { Name: \"%s\", Timestamp: \"%d\", Success: \"%t\" }", job.Name, job.Timestamp, job.Success)
}