[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 ); Partition* part = modl->partitionForIndex( current );
if ( !part ) if ( !part )
{ {
cDebug() << Q_FUNC_INFO << "Partition not found for index" << current; cDebug() << "Partition not found for index" << current;
return; return;
} }

View File

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