diff options
Diffstat (limited to 'migration/migration.cpp')
-rw-r--r-- | migration/migration.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/migration/migration.cpp b/migration/migration.cpp index ae0d98b0..a196d762 100644 --- a/migration/migration.cpp +++ b/migration/migration.cpp @@ -94,7 +94,10 @@ std::vector<QString> migrator::run() if (done.size()) { for (const QString& name : done) - qDebug() << "--" << name; + { + const QByteArray data = name.toUtf8(); + qDebug() << "migrate:" << data.constData(); + } } return done; |