aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/generator
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-04-16 15:09:29 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-04-18 08:13:54 +0200
commit6aa626c5de780698ba8404335bdf21155f28f7cb (patch)
treec7d36326ea06e9cdf85f0f49575dd5caa6da891a /sources/shiboken2/generator
parentd790ceeda49122fbe6cd6b66f1595355f915db4f (diff)
shiboken: Remove some progress and other messages
Task-number: PYSIDE-1265 Change-Id: I8c9651efcbe3d893ba191e0cf78cdcea39410b5c Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken2/generator')
-rw-r--r--sources/shiboken2/generator/generator.cpp2
-rw-r--r--sources/shiboken2/generator/main.cpp1
-rw-r--r--sources/shiboken2/generator/shiboken2/cppgenerator.cpp2
-rw-r--r--sources/shiboken2/generator/shiboken2/headergenerator.cpp2
4 files changed, 0 insertions, 7 deletions
diff --git a/sources/shiboken2/generator/generator.cpp b/sources/shiboken2/generator/generator.cpp
index 3cc625488..bd56b1824 100644
--- a/sources/shiboken2/generator/generator.cpp
+++ b/sources/shiboken2/generator/generator.cpp
@@ -418,8 +418,6 @@ bool Generator::generateFileForContext(GeneratorContext &context)
const QString fileName = fileNameForContext(context);
if (fileName.isEmpty())
return true;
- if (ReportHandler::isDebug(ReportHandler::SparseDebug))
- qCDebug(lcShiboken) << "generating: " << fileName;
QString filePath = outputDirectory() + QLatin1Char('/') + subDirectoryForClass(cls)
+ QLatin1Char('/') + fileName;
diff --git a/sources/shiboken2/generator/main.cpp b/sources/shiboken2/generator/main.cpp
index 7c9845886..02829d54b 100644
--- a/sources/shiboken2/generator/main.cpp
+++ b/sources/shiboken2/generator/main.cpp
@@ -633,7 +633,6 @@ int main(int argc, char *argv[])
}
const QByteArray doneMessage = ReportHandler::doneMessage();
- qCDebug(lcShiboken, "%s", doneMessage.constData());
std::cout << doneMessage.constData() << std::endl;
return EXIT_SUCCESS;
diff --git a/sources/shiboken2/generator/shiboken2/cppgenerator.cpp b/sources/shiboken2/generator/shiboken2/cppgenerator.cpp
index 9e7b96c7f..71c46e6c0 100644
--- a/sources/shiboken2/generator/shiboken2/cppgenerator.cpp
+++ b/sources/shiboken2/generator/shiboken2/cppgenerator.cpp
@@ -295,8 +295,6 @@ static inline bool canGenerateFieldSetter(const AbstractMetaField *field)
void CppGenerator::generateClass(QTextStream &s, GeneratorContext &classContext)
{
AbstractMetaClass *metaClass = classContext.metaClass();
- if (ReportHandler::isDebug(ReportHandler::SparseDebug))
- qCDebug(lcShiboken) << "Generating wrapper implementation for " << metaClass->fullName();
// write license comment
s << licenseComment() << Qt::endl;
diff --git a/sources/shiboken2/generator/shiboken2/headergenerator.cpp b/sources/shiboken2/generator/shiboken2/headergenerator.cpp
index af56d944a..a6f03bb4c 100644
--- a/sources/shiboken2/generator/shiboken2/headergenerator.cpp
+++ b/sources/shiboken2/generator/shiboken2/headergenerator.cpp
@@ -94,8 +94,6 @@ void HeaderGenerator::writeProtectedFieldAccessors(QTextStream &s, const Abstrac
void HeaderGenerator::generateClass(QTextStream &s, GeneratorContext &classContext)
{
AbstractMetaClass *metaClass = classContext.metaClass();
- if (ReportHandler::isDebug(ReportHandler::SparseDebug))
- qCDebug(lcShiboken) << "Generating header for " << metaClass->fullName();
m_inheritedOverloads.clear();
Indentation indent(INDENT);