mirror of
https://github.com/Fishwaldo/rundeck-api-java-client.git
synced 2025-07-09 06:28:44 +00:00
nicer toString
This commit is contained in:
parent
2fbc82dedd
commit
d045205431
1 changed files with 3 additions and 3 deletions
|
@ -131,9 +131,9 @@ public class RundeckExecution implements Serializable {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "RundeckExecution [abortedBy=" + abortedBy + ", description=" + description + ", endedAt=" + endedAt
|
||||
+ ", id=" + id + ", job=" + job + ", startedAt=" + startedAt + ", startedBy=" + startedBy + ", status="
|
||||
+ status + ", url=" + url + "]";
|
||||
return "RundeckExecution [id=" + id + ", description=" + description + ", url=" + url + ", status=" + status
|
||||
+ ", startedBy=" + startedBy + ", startedAt=" + startedAt + ", endedAt=" + endedAt
|
||||
+ ", durationInSeconds=" + getDurationInSeconds() + ", abortedBy=" + abortedBy + ", job=" + job + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue