mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-13 16:20:34 +00:00
more debug output
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@454 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
2b2338de4e
commit
4c23d61d8a
1 changed files with 4 additions and 2 deletions
|
@ -54,9 +54,11 @@ public final class QueryDeparturesResult
|
|||
public String toString()
|
||||
{
|
||||
final StringBuilder builder = new StringBuilder(getClass().getName());
|
||||
builder.append("[").append(this.status).append(": ");
|
||||
builder.append("[").append(this.status);
|
||||
if (location != null)
|
||||
builder.append(" ").append(location.toDebugString());
|
||||
if (departures != null)
|
||||
builder.append(departures.size()).append(" departures");
|
||||
builder.append(" ").append(departures.size()).append(" departures");
|
||||
builder.append("]");
|
||||
return builder.toString();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue