summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim_roster.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ephraim_roster.erl')
-rw-r--r--src/core/ephraim_roster.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ephraim_roster.erl b/src/core/ephraim_roster.erl
index 362b788..502497f 100644
--- a/src/core/ephraim_roster.erl
+++ b/src/core/ephraim_roster.erl
@@ -190,6 +190,7 @@ loop(Roster) ->
ok;
{presence, Packet} ->
+ %io:format("ephraim_roster: Presence: ~p~n", [Packet]),
From = exmpp_xml:get_attribute(Packet, from, <<"unknown">>),
Priority = exmpp_presence:get_priority(Packet),
@@ -214,6 +215,6 @@ loop(Roster) ->
loop(Roster);
Msg ->
- %io:format("ephraim_roster: ~p~n", [Msg]),
+ io:format("ephraim_roster: ~p~n", [Msg]),
loop(Roster)
end.