Skip to content

Commit

Permalink
Merge pull request #33 from hjaltisan/EO11386
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
hjaltisan authored Dec 8, 2020
2 parents 6391000 + 19358ef commit 2c71528
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/installer/eventlogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ EventLogger::EventLogger()
qDebug() << "framework | EventLogger::EventLogger | JourneyId found in filename:" << match.captured(0);
journeyId = QUuid::fromString(match.captured(0));
qDebug() << "framework | EventLogger::EventLogger | JourneyId:" << journeyId.toString(QUuid::WithoutBraces);
qDebug() << "framework | EventLogger::EventLogger | JourneyId (base64):" << QString(journeyId.toRfc4122().toBase64();
qDebug() << "framework | EventLogger::EventLogger | JourneyId (base64):" << QLatin1String(journeyId.toRfc4122().toBase64());
}
}

Expand All @@ -61,7 +61,7 @@ EventLogger::EventLogger()
qDebug() << "framework | EventLogger::EventLogger | No JourneyId provided, one will be created instead";
journeyId = QUuid::createUuid();
qDebug() << "framework | EventLogger::EventLogger | JourneyId:" << journeyId.toString(QUuid::WithoutBraces);
qDebug() << "framework | EventLogger::EventLogger | JourneyId (base64):" << QString(journeyId.toRfc4122().toBase64();
qDebug() << "framework | EventLogger::EventLogger | JourneyId (base64):" << QLatin1String(journeyId.toRfc4122().toBase64());
}

QInstaller::setJourneyId(journeyId);
Expand Down

0 comments on commit 2c71528

Please sign in to comment.