mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
[PATCH] Have udevsend report more info in debug mode.
This commit is contained in:
parent
896e5aa9aa
commit
8bbf27514c
@ -142,30 +142,35 @@ int main(int argc, char* argv[])
|
||||
#ifdef DEBUG
|
||||
init_logging("udevsend");
|
||||
#endif
|
||||
dbg("version %s", UDEV_VERSION);
|
||||
|
||||
subsystem = argv[1];
|
||||
if (subsystem == NULL) {
|
||||
dbg("no subsystem");
|
||||
goto exit;
|
||||
}
|
||||
dbg("subsystem = '%s'", subsystem);
|
||||
|
||||
devpath = get_devpath();
|
||||
if (devpath == NULL) {
|
||||
dbg("no devpath");
|
||||
goto exit;
|
||||
}
|
||||
dbg("DEVPATH = '%s'", devpath);
|
||||
|
||||
action = get_action();
|
||||
if (action == NULL) {
|
||||
dbg("no action");
|
||||
goto exit;
|
||||
}
|
||||
dbg("ACTION = '%s'", action);
|
||||
|
||||
seqnum = get_seqnum();
|
||||
if (seqnum == NULL)
|
||||
seq = -1;
|
||||
else
|
||||
seq = atoi(seqnum);
|
||||
dbg("SEQNUM = '%d'", seq);
|
||||
|
||||
sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
|
||||
if (sock == -1) {
|
||||
|
Loading…
Reference in New Issue
Block a user