Closed helenginn closed 1 year ago
The way I use it is that I include the line: mulch::DebugLog::setDebugMode(false); at the beginning of my test. It seems to be working for all the classes when I do that.
Then this means that the line virtual void setDebugMode(bool mode) = 0;
in Collection.h
should be removed as it isn't necessary to call setDebugMode from the mulch::Collection::
namespace!
At the moment
setDebugMode
is listed underCollection
but it isn't necessarily related toCollection
, so it should be under themulch
namespace and not related to/referred to in files for any particular class. (For example maybe I should have to importDebug.h
if I want to alter the setting)