Put libratbox version on startup in a nicer place.
This commit is contained in:
parent
d2b6b9f308
commit
31c86ea80f
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,6 @@ print_startup(int pid)
|
||||||
inotice("now running in %s mode from %s as pid %d ...",
|
inotice("now running in %s mode from %s as pid %d ...",
|
||||||
!server_state_foreground ? "background" : "foreground",
|
!server_state_foreground ? "background" : "foreground",
|
||||||
ConfigFileEntry.dpath, pid);
|
ConfigFileEntry.dpath, pid);
|
||||||
inotice("%s", rb_lib_version());
|
|
||||||
|
|
||||||
/* let the parent process know the initialization was successful
|
/* let the parent process know the initialization was successful
|
||||||
* -- jilles */
|
* -- jilles */
|
||||||
|
@ -628,6 +627,7 @@ main(int argc, char *argv[])
|
||||||
if(!server_state_foreground)
|
if(!server_state_foreground)
|
||||||
make_daemon();
|
make_daemon();
|
||||||
inotice("starting %s ...", ircd_version);
|
inotice("starting %s ...", ircd_version);
|
||||||
|
inotice("%s", rb_lib_version());
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Init the event subsystem */
|
/* Init the event subsystem */
|
||||||
|
|
Loading…
Reference in a new issue