X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fmain.c;h=32ccf0bd5c92039f900934347c5dfda0da6088bd;hp=40d03ca792bff5ead95587a219d040f299e063bc;hb=07672f492ef085a9143ce3535700c0d4e83173de;hpb=0b3325e79eb98f2e5bc19a1b0efd99e693b31a99 diff --git a/src/main.c b/src/main.c index 40d03ca79..32ccf0bd5 100644 --- a/src/main.c +++ b/src/main.c @@ -1306,6 +1306,11 @@ int main(int argc, char *argv[]) { goto finish; } + after_startup = now(CLOCK_MONOTONIC); + log_full(arg_action == ACTION_TEST ? LOG_INFO : LOG_DEBUG, + "Loaded units and determined initial transaction in %s.", + format_timespan(timespan, sizeof(timespan), after_startup - before_startup)); + if (arg_action == ACTION_TEST) { printf("-> By jobs:\n"); manager_dump_jobs(m, stdout, "\t"); @@ -1314,10 +1319,6 @@ int main(int argc, char *argv[]) { } } - after_startup = now(CLOCK_MONOTONIC); - log_debug("Loaded units and determined initial transaction in %s.", - format_timespan(timespan, sizeof(timespan), after_startup - before_startup)); - for (;;) { if ((r = manager_loop(m)) < 0) { log_error("Failed to run mainloop: %s", strerror(-r));