X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FOctree.hh;fp=src%2FMoof%2FOctree.hh;h=301b420852a4262486cf561449ce64bbe259cc79;hp=4657aecf3680d6db4a61b92d17921fe30080329e;hb=b357615aba1dbde81e3c6999366604e6001010a7;hpb=246d7d6e4386b686327163d621c7c8b398b7d479 diff --git a/src/Moof/Octree.hh b/src/Moof/Octree.hh index 4657aec..301b420 100644 --- a/src/Moof/Octree.hh +++ b/src/Moof/Octree.hh @@ -79,7 +79,7 @@ class Octree : public Entity void printSize() { - logDebug << "size of node " << objects.size() << std::endl; + logInfo << "size of node " << objects.size() << std::endl; } void getAll(std::list& insertables) const @@ -194,7 +194,7 @@ private: } else { - logDebug("getting all the rest..."); + logInfo("getting all the rest..."); getAll(insertables, node); } } @@ -357,9 +357,9 @@ public: void getNearbyObjects(std::list& insertables, const OctreeInsertable& entity) const { - logDebug("--- GETTING NEARBY"); + logInfo("--- GETTING NEARBY"); getNearbyObjects(insertables, entity, mTree.root()); - logDebug("---"); + logInfo("---"); savedObj = &entity; } };