chiark / gitweb /
tmpfiles: add new "L+" command as stronger version of "L", that removes the destinati...
[elogind.git] / src / shared / log.c
index 9039db34964dc5230aaaa2c357b644026b491292..6f17705abfad8869717f9522f570d7e892486102 100644 (file)
@@ -878,6 +878,9 @@ void log_parse_environment(void) {
                         if (l == 5 && startswith(w, "debug")) {
                                 log_set_max_level(LOG_DEBUG);
                                 break;
+                        } else if (l == 5 && startswith(w, "quiet")) {
+                                log_set_max_level(LOG_WARNING);
+                                break;
                         }
                 }
         }