And some more debug output readability improvements.

This commit is contained in:
Teo Mrnjavac 2014-10-30 17:36:56 +01:00
parent f2f73b2e87
commit fef448833e
3 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ Module::fromDescriptorFile( const QString& path )
if ( descriptorFile.exists() && descriptorFile.open( QFile::ReadOnly | QFile::Text ) )
{
QByteArray ba = descriptorFile.readAll();
cDebug() << "Loading descriptor file" << descriptorFile.fileName();
cDebug() << "Loading module.desc for" << QFileInfo( descriptorFile ).dir().dirName();
try
{

View File

@ -160,7 +160,7 @@ ModuleManager::doInit()
}
else
{
cDebug() << Q_FUNC_INFO << "bad search path " << path;
cDebug() << "ModuleManager bad search path" << path;
}
}
// At this point m_availableModules is filled with whatever was found in the

View File

@ -137,7 +137,7 @@ ImageRegistry::pixmap( const QString& image, const QSize& size, CalamaresUtils::
void
ImageRegistry::putInCache( const QString& image, const QSize& size, CalamaresUtils::ImageMode mode, float opacity, const QPixmap& pixmap, QColor tint )
{
cDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Adding to image cache:" << image << size << mode;
// cDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Adding to image cache:" << image << size << mode;
QHash< qint64, QPixmap > subsubcache;
QHash< int, QHash< qint64, QPixmap > > subcache;