You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are still a few direct calls to std::cout hanging around. I think a setting for the verbosity of log output would be useful at some point so we can throw those at a logging function/macro with a high verbosity level if desired so we can still display them easily if desired.
The text was updated successfully, but these errors were encountered:
for example, GeomType currently uses a std::cout in the constructor / destructor. That could instead be piped through some function printing more / less depending on verbosity.
I'm wondering if it makes sense to do anything other than "verbose / not verbose". like, low vs medium vs high.
Could also setup warnings, error, and info or something like that.
There are still a few direct calls to
std::cout
hanging around. I think a setting for the verbosity of log output would be useful at some point so we can throw those at a logging function/macro with a high verbosity level if desired so we can still display them easily if desired.The text was updated successfully, but these errors were encountered: