minor tweak of the logo message

Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
Yuhang Zhao 2022-11-08 09:36:29 +08:00
parent 9dc2e0086a
commit b88ac1591d
1 changed files with 3 additions and 3 deletions

View File

@ -354,9 +354,9 @@ void outputLogo()
QTextStream stream(&message, QIODevice::WriteOnly);
stream << "FramelessHelper (" << (ver.isStatic ? "static" : "shared")
<< ", " << (ver.isDebug ? "debug" : "release") << ") version "
<< ver.version_str << ", author wangwenx190 (Yuhang Zhao).\n"
<< "Built by " << ver.compiler << " from " << ver.commit
<< " on " << ver.compileDateTime << '.';
<< ver.version_str << ", author wangwenx190 (Yuhang Zhao)."
<< " Built by " << ver.compiler << " from " << ver.commit
<< " on " << ver.compileDateTime << " (UTC).";
INFO.nospace().noquote() << message;
}