Show info on QgsDebug if srs db is not found (and path where it was being sought)

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5818 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2006-09-12 23:49:09 +00:00
parent c4c77f18c1
commit 4249cc5dd2

View File

@ -292,6 +292,11 @@ QString QgsProjectionSelector::getCurrentProj4String()
std::cout << " QgsProjectionSelector::getCurrentProj4String : users qgis.db not found" << std::endl;
return NULL;
}
else
{
QgsDebug(myDatabaseFileName);
QgsDebug("File not found");
}
}
else //must be a system projection then
{
@ -891,6 +896,8 @@ void QgsProjectionSelector::on_pbnFind_clicked()
myFileInfo.setFile(myDatabaseFileName);
if ( !myFileInfo.exists( ) ) //its not critical if this happens
{
qDebug(myDatabaseFileName);
qDebug("User db does not exist");
return ;
}
myResult = sqlite3_open(myDatabaseFileName.toLocal8Bit().data(), &myDatabase);
@ -966,6 +973,11 @@ long QgsProjectionSelector::getLargestSRSIDMatch(QString theSql)
}
}
}
else
{
QgsDebug(myDatabaseFileName);
QgsDebug("File not found");
}
//only bother looking in srs.db if it wasnt found above
myResult = sqlite3_open(mSrsDatabaseFileName.toLocal8Bit().data(), &myDatabase);