From 5088df1de59b37dbd6f7c16421f52dbeb49af0ea Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Wed, 15 Oct 2014 17:13:14 +0200 Subject: [PATCH] Remove annoying message on triangle on xml settings load --- src/SurfaceManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SurfaceManager.cpp b/src/SurfaceManager.cpp index d29ca09..b4da419 100644 --- a/src/SurfaceManager.cpp +++ b/src/SurfaceManager.cpp @@ -279,7 +279,7 @@ void SurfaceManager::loadXmlSettings(string fileName) { // it's a triangle ? if (vertexCount == 3) { - ofLog(OF_LOG_NOTICE, "create Triangle"); + //ofLog(OF_LOG_NOTICE, "create Triangle"); xmlSettings.pushTag("vertex", 0); vertices.push_back(ofVec2f(xmlSettings.getValue("x", 0.0f), xmlSettings.getValue("y", 0.0f)));