mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
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@5818 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
57264d4f32
commit
2e0a381714
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user