[libcalamares] Drop generic cLog()

- Use cWarning or cError() for errors
 - Use cDebug(level) for other uses (but there aren't any)
This commit is contained in:
Adriaan de Groot 2018-03-28 09:31:45 -04:00
parent ad6227ce21
commit 6bb72d173d
5 changed files with 11 additions and 12 deletions

View file

@ -115,7 +115,7 @@ PartitionModel::parent( const QModelIndex& child ) const
return createIndex( row, 0, parentNode );
++row;
}
cLog() << "No parent found!";
cWarning() << "No parent found!";
return QModelIndex();
}