From 1ee0e87ba7d5e9997a80de765b55c61422f5694f Mon Sep 17 00:00:00 2001 From: RickyRister <42636155+RickyRister@users.noreply.github.com> Date: Thu, 6 Feb 2025 05:43:37 -0800 Subject: [PATCH] remove debug log that was accidentally left in (#5569) --- cockatrice/src/game/player/player_target.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/cockatrice/src/game/player/player_target.cpp b/cockatrice/src/game/player/player_target.cpp index 29bc3ddf8..becf605ab 100644 --- a/cockatrice/src/game/player/player_target.cpp +++ b/cockatrice/src/game/player/player_target.cpp @@ -88,7 +88,6 @@ void PlayerTarget::paint(QPainter *painter, const QStyleOptionGraphicsItem * /*o const QString cacheKey = "avatar" + QString::number(translatedSize.width()) + "_" + QString::number(info->user_level()) + "_" + QString::number(fullPixmap.cacheKey()); if (!QPixmapCache::find(cacheKey, &cachedPixmap)) { - qDebug() << "TRACK cache miss" << cacheKey; cachedPixmap = QPixmap(translatedSize.width(), translatedSize.height()); QPainter tempPainter(&cachedPixmap);