ENH: add log in request_user_unbind for debuging
Change-Id: I9540080713ac848302b788797005b28a5938f547
This commit is contained in:
parent
4c619aeaa0
commit
0f8ad6d5e6
|
@ -2916,7 +2916,9 @@ int GUI_App::request_user_unbind(std::string dev_id)
|
||||||
{
|
{
|
||||||
int result = -1;
|
int result = -1;
|
||||||
if (m_agent) {
|
if (m_agent) {
|
||||||
return m_agent->unbind(dev_id);
|
result = m_agent->unbind(dev_id);
|
||||||
|
BOOST_LOG_TRIVIAL(info) << "request_user_unbind, dev_id = " << dev_id << ", result = " << result;
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue