[PATCH] Have udevsend report more info in debug mode.

This commit is contained in:
greg@kroah.com 2004-02-16 22:31:32 -08:00 committed by Greg KH
parent 896e5aa9aa
commit 8bbf27514c
1 changed files with 5 additions and 0 deletions

View File

@ -142,30 +142,35 @@ int main(int argc, char* argv[])
#ifdef DEBUG #ifdef DEBUG
init_logging("udevsend"); init_logging("udevsend");
#endif #endif
dbg("version %s", UDEV_VERSION);
subsystem = argv[1]; subsystem = argv[1];
if (subsystem == NULL) { if (subsystem == NULL) {
dbg("no subsystem"); dbg("no subsystem");
goto exit; goto exit;
} }
dbg("subsystem = '%s'", subsystem);
devpath = get_devpath(); devpath = get_devpath();
if (devpath == NULL) { if (devpath == NULL) {
dbg("no devpath"); dbg("no devpath");
goto exit; goto exit;
} }
dbg("DEVPATH = '%s'", devpath);
action = get_action(); action = get_action();
if (action == NULL) { if (action == NULL) {
dbg("no action"); dbg("no action");
goto exit; goto exit;
} }
dbg("ACTION = '%s'", action);
seqnum = get_seqnum(); seqnum = get_seqnum();
if (seqnum == NULL) if (seqnum == NULL)
seq = -1; seq = -1;
else else
seq = atoi(seqnum); seq = atoi(seqnum);
dbg("SEQNUM = '%d'", seq);
sock = socket(AF_LOCAL, SOCK_DGRAM, 0); sock = socket(AF_LOCAL, SOCK_DGRAM, 0);
if (sock == -1) { if (sock == -1) {