EventStore / EventStoreDB-Client-Java

Official Asynchronous Java 8+ Client Library for EventStoreDB 20.6+
https://eventstore.com
Apache License 2.0
63 stars 20 forks source link

Several classes miss a "toString()" method #150

Closed michael-schnell closed 1 year ago

michael-schnell commented 2 years ago

While debugging or logging it's helpful to have a visual representation of the instance.

A class like "DeleteResult" for example currently has no "toString()" method.

It could look like this:

@Override
public String toString() {
    return "DeleteResult [logPosition=" + logPosition + "]";
}
YoEight commented 1 year ago

Some work done here: https://github.com/EventStore/EventStoreDB-Client-Java/pull/204

michael-schnell commented 1 year ago

Cool. Many tnx.