From 5ca9f21f13e32a04eb81af6ddcaa9f142d395ad7 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 3 Aug 2002 16:20:42 +0000 Subject: [PATCH] More debugging output. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@565 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/registrar/TRoster.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/servers/registrar/TRoster.cpp b/src/servers/registrar/TRoster.cpp index 50b78a9b00..45509e5b29 100644 --- a/src/servers/registrar/TRoster.cpp +++ b/src/servers/registrar/TRoster.cpp @@ -114,6 +114,7 @@ TRoster::HandleAddApplication(BMessage *request) port = -1; if (request->FindBool("full_registration", &fullReg) != B_OK) fullReg = false; +PRINT(("team: %ld, signature: %s\n", team, signature)); // check the parameters team_id otherTeam = -1; uint32 launchFlags = flags & B_LAUNCH_MASK; @@ -356,6 +357,7 @@ TRoster::HandleRemoveApp(BMessage *request) team_id team; if (request->FindInt32("team", &team) != B_OK) team = -1; +PRINT(("team: %ld\n", team)); // remove the app if (error == B_OK) { if (RosterAppInfo *info = fRegisteredApps.InfoFor(team)) {