Browse Source

remove a couple of debug statements

pull/593/head
dubslow 11 years ago
parent
commit
19e0ef4641
  1. 6
      src/main.cpp
  2. 4
      src/widget/widget.cpp

6
src/main.cpp

@ -30,7 +30,7 @@ static QTextStream logFile; @@ -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[]) @@ -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

4
src/widget/widget.cpp

@ -593,7 +593,7 @@ void Widget::setStatusMessage(const QString &statusMessage) @@ -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) @@ -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…
Cancel
Save