X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=udevsend.c;h=b5850294aef18aa1cf7fa42fe5456c783bd9d25f;hb=b07ed5a7dcfc6d8b5eb98f97592267a6f35de820;hp=c738fe22459fc55e43211236e9125d3b18963b48;hpb=d026a35d747c0a993281408a9644ab843cf89fdd;p=elogind.git diff --git a/udevsend.c b/udevsend.c index c738fe224..b5850294a 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) {