Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
bff9c9d4
Commit
bff9c9d4
authored
13 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
* #10725: actions: cleanup logging
parent
75b539e1
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnome/src/actions.c
+20
-20
20 additions, 20 deletions
gnome/src/actions.c
with
20 additions
and
20 deletions
gnome/src/actions.c
+
20
−
20
View file @
bff9c9d4
...
...
@@ -178,7 +178,7 @@ sflphone_ringing(callable_obj_t * c)
void
sflphone_hung_up
(
callable_obj_t
*
c
)
{
DEBUG
(
"
SFLphone: Hung up"
);
DEBUG
(
"
%s"
,
__PRETTY_FUNCTION__
);
calllist_remove_call
(
current_calls_tab
,
c
->
_callID
);
calltree_remove_call
(
current_calls_tab
,
c
);
...
...
@@ -299,7 +299,7 @@ sflphone_hang_up()
callable_obj_t
*
selectedCall
=
calltab_get_selected_call
(
current_calls_tab
);
conference_obj_t
*
selectedConf
=
calltab_get_selected_conf
(
active_calltree_tab
);
DEBUG
(
"
SFLphone: Hang up"
);
DEBUG
(
"
%s"
,
__PRETTY_FUNCTION__
);
if
(
selectedConf
)
{
im_widget_update_state
(
IM_WIDGET
(
selectedConf
->
_im_widget
),
FALSE
);
...
...
@@ -436,7 +436,7 @@ sflphone_on_hold()
void
sflphone_off_hold
()
{
DEBUG
(
"
sflphone_off_hold"
);
DEBUG
(
"
%s"
,
__PRETTY_FUNCTION__
);
callable_obj_t
*
selectedCall
=
calltab_get_selected_call
(
current_calls_tab
);
conference_obj_t
*
selectedConf
=
calltab_get_selected_conf
(
active_calltree_tab
);
...
...
@@ -749,29 +749,29 @@ sflphone_place_call(callable_obj_t * c)
{
account_t
*
account
=
NULL
;
if
(
c
==
NULL
)
{
ERROR
(
"
Actions:
Callable object is NULL while making new call"
);
if
(
c
==
NULL
)
{
ERROR
(
"Callable object is NULL while making new call"
);
return
-
1
;
}
DEBUG
(
"
Actions:
Placing call from %s to %s using account %s"
,
c
->
_display_name
,
c
->
_peer_number
,
c
->
_accountID
);
DEBUG
(
"Placing call from %s to %s using account %s"
,
c
->
_display_name
,
c
->
_peer_number
,
c
->
_accountID
);
if
(
c
->
_state
!=
CALL_STATE_DIALING
)
{
ERROR
(
"
Actions:
Call not in state dialing, cannot place call"
);
ERROR
(
"Call not in state dialing, cannot place call"
);
return
-
1
;
}
if
(
!
c
->
_peer_number
||
strlen
(
c
->
_peer_number
)
==
0
)
{
ERROR
(
"
Actions:
No peer number set for this call"
);
ERROR
(
"No peer number set for this call"
);
return
-
1
;
}
// Get the account for this call
if
(
strlen
(
c
->
_accountID
)
!=
0
)
{
DEBUG
(
"
Actions:
Account %s already set for this call"
,
c
->
_accountID
);
DEBUG
(
"Account %s already set for this call"
,
c
->
_accountID
);
account
=
account_list_get_by_id
(
c
->
_accountID
);
}
else
{
DEBUG
(
"
Actions:
No account set for this call, use first of the list"
);
DEBUG
(
"No account set for this call, use first of the list"
);
account
=
account_list_get_current
();
}
...
...
@@ -786,7 +786,7 @@ sflphone_place_call(callable_obj_t * c)
// If there is no account specified or found, fallback on IP2IP call
if
(
account
==
NULL
)
{
DEBUG
(
"
Actions:
Could not find an account for this call, making ip to ip call"
);
DEBUG
(
"Could not find an account for this call, making ip to ip call"
);
account
=
account_list_get_by_id
(
"IP2IP"
);
if
(
account
==
NULL
)
{
ERROR
(
"Actions: Could not determine any account for this call"
);
...
...
@@ -815,7 +815,7 @@ sflphone_detach_participant(const gchar* callID)
else
selectedCall
=
calllist_get_call
(
current_calls_tab
,
callID
);
DEBUG
(
"
Action:
Detach participant %s"
,
selectedCall
->
_callID
);
DEBUG
(
"Detach participant %s"
,
selectedCall
->
_callID
);
if
(
selectedCall
->
_confID
)
{
g_free
(
selectedCall
->
_confID
);
...
...
@@ -831,12 +831,12 @@ sflphone_detach_participant(const gchar* callID)
void
sflphone_add_participant
(
const
gchar
*
callID
,
const
gchar
*
confID
)
{
DEBUG
(
"
>SFLphone:
Add participant %s to conference %s"
,
callID
,
confID
);
DEBUG
(
"Add participant %s to conference %s"
,
callID
,
confID
);
callable_obj_t
*
call
=
calllist_get_call
(
current_calls_tab
,
callID
);
if
(
call
==
NULL
)
{
ERROR
(
"
SFLphone: Error:
Could not find call"
);
ERROR
(
"Could not find call"
);
return
;
}
...
...
@@ -846,7 +846,7 @@ sflphone_add_participant(const gchar* callID, const gchar* confID)
void
sflphone_add_main_participant
(
const
conference_obj_t
*
c
)
{
DEBUG
(
"
sflphone add main participant"
);
DEBUG
(
"
%s"
,
__PRETTY_FUNCTION__
);
dbus_add_main_participant
(
c
->
_confID
);
}
...
...
@@ -857,7 +857,7 @@ sflphone_rec_call()
conference_obj_t
*
selectedConf
=
calltab_get_selected_conf
(
current_calls_tab
);
if
(
selectedCall
)
{
DEBUG
(
"
SFLphone:
Set record for selected call"
);
DEBUG
(
"Set record for selected call"
);
dbus_set_record
(
selectedCall
->
_callID
);
switch
(
selectedCall
->
_state
)
{
...
...
@@ -874,7 +874,7 @@ sflphone_rec_call()
calltree_update_call
(
current_calls_tab
,
selectedCall
);
}
else
if
(
selectedConf
)
{
DEBUG
(
"
SFLphone:
Set record for selected conf"
);
DEBUG
(
"Set record for selected conf"
);
dbus_set_record
(
selectedConf
->
_confID
);
switch
(
selectedConf
->
_state
)
{
...
...
@@ -895,7 +895,7 @@ sflphone_rec_call()
break
;
}
DEBUG
(
"
Actions:
Remove and add conference %s"
,
selectedConf
->
_confID
);
DEBUG
(
"Remove and add conference %s"
,
selectedConf
->
_confID
);
calltree_remove_conference
(
current_calls_tab
,
selectedConf
);
calltree_add_conference_to_current_calls
(
selectedConf
);
}
...
...
@@ -906,7 +906,7 @@ sflphone_rec_call()
void
sflphone_mute_call
()
{
DEBUG
(
"
Actions: Mute call"
);
DEBUG
(
"
%s"
,
__PRETTY_FUNCTION__
);
toggle_slider_mute_microphone
();
}
...
...
@@ -1073,7 +1073,7 @@ sflphone_request_go_clear(void)
void
sflphone_call_state_changed
(
callable_obj_t
*
c
,
const
gchar
*
description
,
const
guint
code
)
{
DEBUG
(
"
SFLPhone:
Call State changed %s"
,
description
);
DEBUG
(
"Call State changed %s"
,
description
);
if
(
c
==
NULL
)
{
ERROR
(
"SFLphone: Error: callable obj is NULL in %s at %d"
,
__FILE__
,
__LINE__
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment