diff --git a/src/libcalamaresui/modulesystem/Module.cpp b/src/libcalamaresui/modulesystem/Module.cpp index 340f778f2..9d161eb17 100644 --- a/src/libcalamaresui/modulesystem/Module.cpp +++ b/src/libcalamaresui/modulesystem/Module.cpp @@ -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 { diff --git a/src/libcalamaresui/modulesystem/ModuleManager.cpp b/src/libcalamaresui/modulesystem/ModuleManager.cpp index 170002e78..c138917d2 100644 --- a/src/libcalamaresui/modulesystem/ModuleManager.cpp +++ b/src/libcalamaresui/modulesystem/ModuleManager.cpp @@ -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 diff --git a/src/libcalamaresui/utils/ImageRegistry.cpp b/src/libcalamaresui/utils/ImageRegistry.cpp index 48f5ea867..ad3e606ab 100644 --- a/src/libcalamaresui/utils/ImageRegistry.cpp +++ b/src/libcalamaresui/utils/ImageRegistry.cpp @@ -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;