]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
udev-event: Capitalize log messages
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 23 Oct 2018 03:23:44 +0000 (12:23 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 23 Oct 2018 19:46:48 +0000 (04:46 +0900)
src/udev/udev-event.c

index 58d43be340406461e29adf609729a3952e9c851e..ffaa8da96abb6a0e52bfcfb46282d889cc9e54ef 100644 (file)
@@ -540,7 +540,7 @@ static int on_spawn_timeout(sd_event_source *s, uint64_t usec, void *userdata) {
 
         kill_and_sigcont(spawn->pid, SIGKILL);
 
-        log_error("spawned process '%s' ["PID_FMT"] timed out after %s, killing", spawn->cmd, spawn->pid,
+        log_error("Spawned process '%s' ["PID_FMT"] timed out after %s, killing", spawn->cmd, spawn->pid,
                   format_timestamp_relative(timeout, sizeof(timeout), spawn->timeout));
 
         return 1;
@@ -552,7 +552,7 @@ static int on_spawn_timeout_warning(sd_event_source *s, uint64_t usec, void *use
 
         assert(spawn);
 
-        log_warning("spawned process '%s' ["PID_FMT"] is taking longer than %s to complete", spawn->cmd, spawn->pid,
+        log_warning("Spawned process '%s' ["PID_FMT"] is taking longer than %s to complete", spawn->cmd, spawn->pid,
                     format_timestamp_relative(timeout, sizeof(timeout), spawn->timeout));
 
         return 1;