forked from qt-creator/qt-creator
qmljs: disable console warnings for failed dumping
Change-Id: I7905dedb15ae7d84bf55013abdd822dd40984588 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
@@ -210,7 +210,7 @@ QHash<QString, Language::Enum> ModelManagerInterface::languageForSuffix() const
|
|||||||
|
|
||||||
void ModelManagerInterface::writeMessageInternal(const QString &msg) const
|
void ModelManagerInterface::writeMessageInternal(const QString &msg) const
|
||||||
{
|
{
|
||||||
qCWarning(qmljsLog) << msg;
|
qCDebug(qmljsLog) << msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
ModelManagerInterface::WorkingCopy ModelManagerInterface::workingCopyInternal() const
|
ModelManagerInterface::WorkingCopy ModelManagerInterface::workingCopyInternal() const
|
||||||
@@ -631,7 +631,7 @@ void ModelManagerInterface::updateDocument(Document::Ptr doc)
|
|||||||
void ModelManagerInterface::updateLibraryInfo(const QString &path, const LibraryInfo &info)
|
void ModelManagerInterface::updateLibraryInfo(const QString &path, const LibraryInfo &info)
|
||||||
{
|
{
|
||||||
if (!info.pluginTypeInfoError().isEmpty())
|
if (!info.pluginTypeInfoError().isEmpty())
|
||||||
qCWarning(qmljsLog) << "Dumping errors for " << path << ":" << info.pluginTypeInfoError();
|
qCDebug(qmljsLog) << "Dumping errors for " << path << ":" << info.pluginTypeInfoError();
|
||||||
|
|
||||||
{
|
{
|
||||||
QMutexLocker locker(&m_mutex);
|
QMutexLocker locker(&m_mutex);
|
||||||
|
|||||||
Reference in New Issue
Block a user