Skip to content
Snippets Groups Projects
Commit 56f12047 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

module-session: debug default endpoint changes

parent 1586d731
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,11 @@ select_new_default_ep (struct module_data * data, WpDefaultEndpointType type,
}
def_id = wp_session_get_default_endpoint (WP_SESSION (data->session), type);
if (def_id != best_id)
if (def_id != best_id) {
g_debug ("selecting default endpoint for type %x, old:%u, new:%u",
type, def_id, best_id);
wp_session_set_default_endpoint (WP_SESSION (data->session), type, best_id);
}
}
static void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment