Skip to content

Commit

Permalink
Add toString method to WorkContext
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbenhassine committed Mar 12, 2020
1 parent f61071c commit 2f9a3a2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/jeasy/flows/work/WorkContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,9 @@ public Object get(String key) {
public Set<Map.Entry<String, Object>> getEntrySet() {
return context.entrySet();
}

@Override
public String toString() {
return "context=" + context + '}';
}
}

0 comments on commit 2f9a3a2

Please sign in to comment.