comparison rdf/RDFTransformFactory.cpp @ 690:1424aa29ae95

Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author Chris Cannam
date Tue, 14 Jun 2011 15:26:52 +0100
parents 573d45e9487b
children 211efc770335
comparison
equal deleted inserted replaced
689:573d45e9487b 690:1424aa29ae95
166 } 166 }
167 167
168 m_isRDF = true; 168 m_isRDF = true;
169 169
170 if (transformResults.empty()) { 170 if (transformResults.empty()) {
171 DEBUG << "RDFTransformFactory: NOTE: No RDF/TTL transform descriptions found in document at <" << m_urlString << ">" << endl; 171 SVDEBUG << "RDFTransformFactory: NOTE: No RDF/TTL transform descriptions found in document at <" << m_urlString << ">" << endl;
172 return transforms; 172 return transforms;
173 } 173 }
174 174
175 // There are various queries we need to make that might include 175 // There are various queries we need to make that might include
176 // data from either the transform RDF or the model accumulated 176 // data from either the transform RDF or the model accumulated
288 } 288 }
289 } 289 }
290 } 290 }
291 } 291 }
292 292
293 DEBUG << "RDFTransformFactory: NOTE: Transform is: " << endl; 293 SVDEBUG << "RDFTransformFactory: NOTE: Transform is: " << endl;
294 cerr << transform.toXmlString() << endl; 294 cerr << transform.toXmlString() << endl;
295 295
296 transforms.push_back(transform); 296 transforms.push_back(transform);
297 } 297 }
298 298