[partition] Remove spurious Q_FUNC_INFO from logging

- The Q_FUNC_INFO was integrated into regular logging with commit
  5248a37eb3
This commit is contained in:
Adriaan de Groot 2020-05-19 15:05:05 +02:00
parent 8465dcbc19
commit 3e51fe4651
2 changed files with 5 additions and 5 deletions

View File

@ -560,7 +560,7 @@ ChoicePage::doAlongsideSetupSplitter( const QModelIndex& current,
Partition* part = modl->partitionForIndex( current );
if ( !part )
{
cDebug() << Q_FUNC_INFO << "Partition not found for index" << current;
cDebug() << "Partition not found for index" << current;
return;
}

View File

@ -120,10 +120,10 @@ PartitionSplitterWidget::setSplitPartition( const QString& path,
qint64 maxSize,
qint64 preferredSize )
{
cDebug() << Q_FUNC_INFO << "path:" << path
<< "\nminSize:" << minSize
<< "\nmaxSize:" << maxSize
<< "\nprfSize:" << preferredSize;
cDebug() << "path:" << path
<< Logger::Continuation << "minSize:" << minSize
<< Logger::Continuation << "maxSize:" << maxSize
<< Logger::Continuation << "prfSize:" << preferredSize;
if ( m_itemToResize && m_itemToResizeNext )
{