From 3770b02ea7d8696c50d7389f615d7f19ab20f03f Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Fri, 19 Oct 2018 10:45:22 +0200 Subject: [PATCH] Print the EOL date to the log file ref T319 --- src/blackmisc/filelogger.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/blackmisc/filelogger.cpp b/src/blackmisc/filelogger.cpp index b9c5da887..7b5859444 100644 --- a/src/blackmisc/filelogger.cpp +++ b/src/blackmisc/filelogger.cpp @@ -130,6 +130,8 @@ namespace BlackMisc m_stream << " and running with Qt " << qVersion(); m_stream << " " << QSysInfo::buildAbi() << endl; + m_stream << "Program is going to expire on " + CBuildConfig::getEol().toString() << "." << endl; + m_stream << "Application started." << endl; }