From 9a3149aba0214d514b57a53af6d019ae191ecab6 Mon Sep 17 00:00:00 2001 From: turret Date: Thu, 18 Jan 2024 19:24:14 -0600 Subject: all: remove defunct prints --- init/subsys.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'init/subsys.c') diff --git a/init/subsys.c b/init/subsys.c index c3fe903..704678f 100644 --- a/init/subsys.c +++ b/init/subsys.c @@ -45,9 +45,6 @@ static int __subsystem_entry(struct subsystem_info *info) static sigset_t set; sigprocmask(SIG_SETMASK, &set, NULL); - print(LOG_DEBUG "subsys: starting subsystem %s (%d)", - info->fn_name, getpid()); - int ret = info->fn(); return ret; @@ -86,9 +83,6 @@ int subsystem_handle_term(int pid) if(!subsystem || subsystem->pid != pid) continue; - print(LOG_DEBUG "subsys: subsystem terminated %s (%d)", - subsystem->fn_name, pid); - if(subsystem->mode == PANICMODE_RESPAWN && subsystem->respawn_count < MAX_RESPAWN) { ++(subsystem->respawn_count); -- cgit v1.2.3