1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 
3 #include "analyze.h"
4 #include "analyze-log-control.h"
5 #include "verb-log-control.h"
6 
verb_log_control(int argc,char * argv[],void * userdata)7 int verb_log_control(int argc, char *argv[], void *userdata) {
8         _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
9         int r;
10 
11         assert(IN_SET(argc, 1, 2));
12 
13         r = acquire_bus(&bus, NULL);
14         if (r < 0)
15                 return bus_log_connect_error(r, arg_transport);
16 
17         return verb_log_control_common(bus, "org.freedesktop.systemd1", argv[0], argc == 2 ? argv[1] : NULL);
18 }
19