summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2004-02-16 22:31:32 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:32:28 -0700
commit8bbf27514c5e59f4982d0164af6b5df00ca2bac9 (patch)
tree3782ee205fb373a6eadd928ea0366bb88dade204
parent896e5aa9aa6ea467a34b53d5053621b9cfc58548 (diff)
downloadsystemd-8bbf27514c5e59f4982d0164af6b5df00ca2bac9.tar.gz
[PATCH] Have udevsend report more info in debug mode.
-rw-r--r--udevsend.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/udevsend.c b/udevsend.c
index c738fe2245..b5850294ae 100644
--- a/udevsend.c
+++ b/udevsend.c
@@ -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) {