Lepetere / clarango

A Clojure Driver for ArangoDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Debug print in code?

edlich opened this issue · comments

If I do get-info-list on the database level, there will be
GET connection address: http://localhost:8529/_db/_system/_api/database
written on the console. Is this debug info?
Is this stout print intended?

(and just testing the issue system ;-)

Yes, it is debug info and there is a switch here:
https://github.com/edlich/clarango/blob/master/src/clarango/utilities/http_utility.clj#L20
Just change it to false if you don't want the output.
Since I did only console output testing so far, it came in handy to have the URI printed out...

Thanks!