Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArystanbek Dyussenov <arystan.d@gmail.com>2012-03-17 10:37:26 +0400
committerArystanbek Dyussenov <arystan.d@gmail.com>2012-03-17 10:37:26 +0400
commit8634d0e9c103e4d5dc38d1876af16a7434354a53 (patch)
tree30029e1b77b270753a250dce338615cbba81adc1 /source/blender/collada/ErrorHandler.cpp
parent757c0af9c64655306dbb58883505efe22e1c460c (diff)
#collada instance_node import, partially fixes #27629
Patch applied in r37663 caused loss of <instance_node>s. All parts of the smaller test file attached in the report now import.
Diffstat (limited to 'source/blender/collada/ErrorHandler.cpp')
-rw-r--r--source/blender/collada/ErrorHandler.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/collada/ErrorHandler.cpp b/source/blender/collada/ErrorHandler.cpp
index 9ed8034a9a0..1c0f40d2185 100644
--- a/source/blender/collada/ErrorHandler.cpp
+++ b/source/blender/collada/ErrorHandler.cpp
@@ -83,5 +83,9 @@ bool ErrorHandler::handleError( const COLLADASaxFWL::IError* error )
COLLADASaxFWL::SaxFWLError* saxFWLError = (COLLADASaxFWL::SaxFWLError*) error;
std::cout << "Sax FWL Error: " << saxFWLError->getErrorMessage() << std::endl;
}
+ else {
+ std::cout << "opencollada error: " << error->getFullErrorMessage() << std::endl;
+ }
+
return false;
}