Skip to content

Commit

Permalink
replace iostream with QDebugMsg in wmsprovider, msvc logger update
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@7349 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Nov 7, 2007
1 parent d31849b commit 973592a
Show file tree
Hide file tree
Showing 2 changed files with 138 additions and 353 deletions.
4 changes: 4 additions & 0 deletions src/core/qgslogger.h
Expand Up @@ -76,7 +76,11 @@ class CORE_EXPORT QgsLogger
}
else
{
#if defined(_MSC_VER)
qDebug("%s(%d): (%s) %s", file, line, function, os.str().c_str());
#else
qDebug("%s: %d: (%s) %s", file, line, function, os.str().c_str());
#endif
}
}

Expand Down

0 comments on commit 973592a

Please sign in to comment.