eeze_scanner now prints debug info when CHANGE events occur

SVN revision: 73519
This commit is contained in:
Mike Blumenkrantz 2012-07-10 10:40:59 +00:00
parent 7674239482
commit 06d0a924ba
1 changed files with 4 additions and 0 deletions

View File

@ -323,7 +323,9 @@ cb_vol_chg(const char *device, Eeze_Udev_Event ev, void *data __UNUSED__, Eeze_U
}
volume_devices = eina_list_remove(volume_devices, device);
eina_stringshare_del(device);
break;
default:
INF("Changed volume '%s'", device);
break;
}
}
@ -374,7 +376,9 @@ cb_stor_chg(const char *device, Eeze_Udev_Event ev, void *data __UNUSED__, Eeze_
}
storage_devices = eina_list_remove(storage_devices, device);
eina_stringshare_del(device);
break;
default:
INF("Changed device '%s'", device);
break;
}
}