From 4d383612d494fb0947a4ce0d41dded2666502fcd Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Mon, 21 Mar 2016 21:14:11 -0500 Subject: [PATCH] ircd: log runtime path (mainly as proof of concept for rb_path_to_self()) --- ircd/ircd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/ircd.c b/ircd/ircd.c index 4634f141..6d88a2cc 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -168,7 +168,7 @@ print_startup(int pid) if (fd != 1) abort(); #endif - + inotice("runtime path: %s", rb_path_to_self()); inotice("now running in %s mode from %s as pid %d ...", !server_state_foreground ? "background" : "foreground", ConfigFileEntry.dpath, pid);