Skip to content

Commit 1e5edd9

Browse files
committed
Update PopupManager logging
1 parent 48e7062 commit 1e5edd9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Source/UI/PopupComponent.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void PopupManager::showPopup (std::unique_ptr<Component> popupComponent, Compone
3737

3838
myBox.setDismissalMouseClicksAreAlwaysConsumed (true);
3939

40-
LOGD ("***Adding popup: " + componentID);
40+
LOGD ("PopupManager adding: " + componentID);
4141

4242
popupStack.push_back (componentID);
4343

@@ -51,11 +51,11 @@ void PopupManager::onPopupDismissed (int result)
5151
{
5252
String componentID = popupStack.back();
5353
popupStack.pop_back();
54-
LOGD ("***Closed popup " + componentID);
54+
LOGD ("PopupManager closed: " + componentID);
5555
}
5656
else
5757
{
58-
LOGD ("***No popups to remove");
58+
LOGD ("PopupManager: no popups to remove.");
5959
}
6060
}
6161

0 commit comments

Comments
 (0)