mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-02-24 03:39:39 +07:00
main: introduce -D as quick acess to debugging
This commit is contained in:
parent
53b543608e
commit
1d2e23ab72
@ -582,7 +582,7 @@ static int parse_argv(int argc, char *argv[]) {
|
||||
assert(argc >= 1);
|
||||
assert(argv);
|
||||
|
||||
while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0)
|
||||
while ((c = getopt_long(argc, argv, "hD", options, NULL)) >= 0)
|
||||
|
||||
switch (c) {
|
||||
|
||||
@ -715,6 +715,10 @@ static int parse_argv(int argc, char *argv[]) {
|
||||
arg_action = ACTION_HELP;
|
||||
break;
|
||||
|
||||
case 'D':
|
||||
log_set_max_level(LOG_DEBUG);
|
||||
break;
|
||||
|
||||
case '?':
|
||||
return -EINVAL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user