]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
udevadm: rename option '--log-priority' into '--log-level' 17109/head
authorFranck Bui <fbui@suse.com>
Mon, 21 Sep 2020 09:22:12 +0000 (11:22 +0200)
committerFranck Bui <fbui@suse.com>
Tue, 22 Sep 2020 07:05:57 +0000 (09:05 +0200)
Let's be consistent with systemctl(1).

'--log-priority' i still kept only for backward compatibility.

man/udevadm.xml
src/udev/udevadm-control.c

index a716b1819d783cdc8a67e788c89c23d20523b288..c78faa5a0660dc920fff32a7b50d5fceb55c1205 100644 (file)
         </varlistentry>
         <varlistentry>
           <term><option>-l</option></term>
-          <term><option>--log-priority=<replaceable>value</replaceable></option></term>
+          <term><option>--log-level=<replaceable>value</replaceable></option></term>
           <listitem>
             <para>Set the internal log level of
             <filename>systemd-udevd</filename>. Valid values are the
index 82e25149325ecbc6606bc18a09dbd892afb85c63..6096dcbe781bcc0622c162ae2131aef4ebe391da 100644 (file)
@@ -34,7 +34,7 @@ static int help(void) {
                "  -h --help                Show this help\n"
                "  -V --version             Show package version\n"
                "  -e --exit                Instruct the daemon to cleanup and exit\n"
-               "  -l --log-priority=LEVEL  Set the udev log level for the daemon\n"
+               "  -l --log-level=LEVEL     Set the udev log level for the daemon\n"
                "  -s --stop-exec-queue     Do not execute events, queue only\n"
                "  -S --start-exec-queue    Execute events, flush queue\n"
                "  -R --reload              Reload rules and databases\n"
@@ -58,7 +58,8 @@ int control_main(int argc, char *argv[], void *userdata) {
 
         static const struct option options[] = {
                 { "exit",             no_argument,       NULL, 'e'      },
-                { "log-priority",     required_argument, NULL, 'l'      },
+                { "log-level",        required_argument, NULL, 'l'      },
+                { "log-priority",     required_argument, NULL, 'l'      }, /* for backward compatibility */
                 { "stop-exec-queue",  no_argument,       NULL, 's'      },
                 { "start-exec-queue", no_argument,       NULL, 'S'      },
                 { "reload",           no_argument,       NULL, 'R'      },
@@ -98,11 +99,11 @@ int control_main(int argc, char *argv[], void *userdata) {
                 case 'l':
                         r = log_level_from_string(optarg);
                         if (r < 0)
-                                return log_error_errno(r, "Failed to parse log priority '%s': %m", optarg);
+                                return log_error_errno(r, "Failed to parse log level '%s': %m", optarg);
 
                         r = udev_ctrl_send_set_log_level(uctrl, r);
                         if (r == -ENOANO)
-                                log_warning("Cannot specify --log-priority after --exit, ignoring.");
+                                log_warning("Cannot specify --log-level after --exit, ignoring.");
                         else if (r < 0)
                                 return log_error_errno(r, "Failed to send request to set log level: %m");
                         break;