Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Issue #113 #177

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/logger.cpp
Expand Up @@ -374,7 +374,7 @@ void Logger::setCurrentLogFile(QString filename) {
instance->outputFile.open( QIODevice::WriteOnly | QIODevice::Append );
instance->outFileStream.setDevice( &instance->outputFile );
instance->setCurrentStream( &instance->outFileStream );
instance->LogInfo(QObject::tr("Logging started"), true, true);
instance->LogInfo(QObject::tr("Logging started") + " " + QDate::currentDate().toString("MM-dd-yyyy"), true, true);
}

void Logger::setCurrentErrorLogFile(QString filename) {
Expand Down