mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
remove a couple of debug statements
This commit is contained in:
parent
b78737632e
commit
19e0ef4641
|
@ -30,7 +30,7 @@ static QTextStream logFile;
|
|||
void myMessageHandler(QtMsgType type, const QMessageLogContext& ctxt, const QString& msg)
|
||||
{
|
||||
dflt(type, ctxt, msg);
|
||||
logFile << QTime::currentTime().toString("HH:mm:ss' '") << msg << '\n';
|
||||
logFile << QTime::currentTime().toString("HH:mm:ss' '") << msg << '\n';
|
||||
logFile.flush();
|
||||
}
|
||||
#endif
|
||||
|
@ -46,8 +46,8 @@ int main(int argc, char *argv[])
|
|||
QFile logfile(QDir(Settings::getSettingsDirPath()).filePath("qtox.log"));
|
||||
logfile.open(QIODevice::Append);
|
||||
logFile.setDevice(&logfile);
|
||||
|
||||
logFile << QDateTime::currentDateTime().toString("yyyy-dd-MM HH:mm:ss' file logger starting\n'");
|
||||
|
||||
logFile << QDateTime::currentDateTime().toString("yyyy-dd-MM HH:mm:ss' file logger starting\n'");
|
||||
qInstallMessageHandler(myMessageHandler);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -593,7 +593,7 @@ void Widget::setStatusMessage(const QString &statusMessage)
|
|||
|
||||
void Widget::addFriend(int friendId, const QString &userId)
|
||||
{
|
||||
qDebug() << "Widget: Adding friend with id" << userId;
|
||||
//qDebug() << "Widget: Adding friend with id" << userId;
|
||||
Friend* newfriend = FriendList::addFriend(friendId, userId);
|
||||
QLayout* layout = contactListWidget->getFriendLayout(Status::Offline);
|
||||
layout->addWidget(newfriend->widget);
|
||||
|
@ -632,7 +632,7 @@ void Widget::addFriend(int friendId, const QString &userId)
|
|||
QPixmap avatar = Settings::getInstance().getSavedAvatar(userId);
|
||||
if (!avatar.isNull())
|
||||
{
|
||||
qWarning() << "Widget: loadded avatar for id" << userId;
|
||||
//qWarning() << "Widget: loadded avatar for id" << userId;
|
||||
newfriend->chatForm->onAvatarChange(friendId, avatar);
|
||||
newfriend->widget->onAvatarChange(friendId, avatar);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user