Skip to content

Commit

Permalink
Merge pull request #1851 from timlinux/master
Browse files Browse the repository at this point in the history
Dont dump projects to console when reading them
  • Loading branch information
timlinux committed Jan 22, 2015
2 parents 65a3bed + 8d98c79 commit 2bb6f2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/core/qgsproject.cpp
Expand Up @@ -876,11 +876,13 @@ bool QgsProject::read()
emit oldProjectVersionWarning( fileVersion.text() );
QgsDebugMsg( "Emitting oldProjectVersionWarning(oldVersion)." );

projectFile.dump();
// Commented out by Tim - overly verbose on console
// projectFile.dump();

projectFile.updateRevision( thisVersion );

projectFile.dump();
// Commented out by Tim - overly verbose on console
// projectFile.dump();

}

Expand Down

0 comments on commit 2bb6f2a

Please sign in to comment.