From 3cbb6c48aba3e50c6c6430f9abcc6adcff1d7252 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 25 Aug 2024 23:50:02 +0200 Subject: Make sure to also print early-fatal errors on mach console In case the user is using a debug kernel, they will get to see these. --- startup/startup.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'startup') diff --git a/startup/startup.c b/startup/startup.c index a1214800..5666efc6 100644 --- a/startup/startup.c +++ b/startup/startup.c @@ -899,8 +899,11 @@ launch_core_servers (void) err = install_as_translator (); if (err) - /* Good luck. Who knows, maybe it's an old installation. */ - error (0, err, "Failed to bind to " _SERVERS_STARTUP); + { + /* Good luck. Who knows, maybe it's an old installation. */ + mach_print ("Failed to bind to " _SERVERS_STARTUP "\n"); + error (0, err, "Failed to bind to " _SERVERS_STARTUP); + } if (verbose) fprintf (stderr, "Installed on /servers/startup\n"); -- cgit v1.2.3