]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
main: make duplicate plymouthd's a silent error
authorRay Strode <rstrode@redhat.com>
Wed, 9 Feb 2011 19:47:54 +0000 (14:47 -0500)
committerRay Strode <rstrode@redhat.com>
Wed, 9 Feb 2011 20:07:14 +0000 (15:07 -0500)
src/main.c

index 032a3faaf40842a1d05c08ba8951374f2b374a20..e15c3776b5672d0ed9b7519ccc8d15cea9e60063 100644 (file)
@@ -2129,7 +2129,7 @@ main (int    argc,
       state.should_be_attached = attach_to_session;
       if (!attach_to_running_session (&state))
         {
-          ply_error ("plymouthd: could not redirect console session: %m");
+          ply_trace ("could not redirect console session: %m");
           if (! no_daemon)
             ply_detach_daemon (daemon_handle, EX_UNAVAILABLE);
           return EX_UNAVAILABLE;
@@ -2140,7 +2140,8 @@ main (int    argc,
 
   if (state.boot_server == NULL)
     {
-      ply_error ("plymouthd: could not log bootup: %m");
+      ply_trace ("could not log bootup: %m");
+
       if (daemon_handle != NULL)
         ply_detach_daemon (daemon_handle, EX_UNAVAILABLE);
       return EX_UNAVAILABLE;