summaryrefslogtreecommitdiff
path: root/src/macdeployqt/shared/shared.cpp
diff options
context:
space:
mode:
authorTarja Sundqvist <tarja.sundqvist@qt.io>2023-03-23 16:00:31 +0200
committerTarja Sundqvist <tarja.sundqvist@qt.io>2023-03-23 16:00:31 +0200
commit1e7d50937f4b94c37a16f6370c0fd4ccb4329190 (patch)
tree94b5752f1ae4372db08848e3020295c1de567686 /src/macdeployqt/shared/shared.cpp
parent6914f7c8039e5d9aab9446a6d0d882caf9f61025 (diff)
parent55fe27c4455eb54830bb08f19e34d8f2f137ad2f (diff)
downloadqttools-5.15.tar.gz
Merge remote-tracking branch 'origin/tqtc/lts-5.15.9' into tqtc/lts-5.15-opensourcev5.15.9-lts-lgpl5.15
Change-Id: I2813471aad9bc8b9bd04efe8571be6d1bee3045c
Diffstat (limited to 'src/macdeployqt/shared/shared.cpp')
-rw-r--r--src/macdeployqt/shared/shared.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macdeployqt/shared/shared.cpp b/src/macdeployqt/shared/shared.cpp
index a29b3be6e..5e0c123de 100644
--- a/src/macdeployqt/shared/shared.cpp
+++ b/src/macdeployqt/shared/shared.cpp
@@ -200,7 +200,7 @@ OtoolInfo findDependencyInfo(const QString &binaryPath)
info.compatibilityVersion = QVersionNumber::fromString(match.captured(2));
info.currentVersion = QVersionNumber::fromString(match.captured(3));
} else {
- LogError() << "Could not parse otool output line:" << outputLines.first();
+ LogDebug() << "Could not parse otool output line:" << outputLines.first();
}
outputLines.removeFirst();
}
@@ -214,7 +214,7 @@ OtoolInfo findDependencyInfo(const QString &binaryPath)
dylib.currentVersion = QVersionNumber::fromString(match.captured(3));
info.dependencies << dylib;
} else {
- LogError() << "Could not parse otool output line:" << outputLine;
+ LogDebug() << "Could not parse otool output line:" << outputLine;
}
}