ilog -> inotice in ircd_restart_cb (ircd.c)
This commit is contained in:
parent
6643434b59
commit
1a7848d87a
3 changed files with 4 additions and 3 deletions
2
CREDITS
2
CREDITS
|
@ -7,7 +7,7 @@ network configurations.
|
|||
|
||||
The charybdis core team is listed in nick-alphabetical order:
|
||||
|
||||
dwr, Valery Yatsko <darkwire -at- sellcenter.ru>
|
||||
dwr, Valery Yatsko <darkwire -at- ircd-charybdis.ru>
|
||||
gxti, Michael Tharp <gxti -at- partiallystapled.com>
|
||||
jilles, Jilles Tjoelker <jilles -at- stack.nl>
|
||||
nenolod, William Pitcock <nenolod -at- nenolod.net>
|
||||
|
|
1
TODO
1
TODO
|
@ -29,6 +29,7 @@
|
|||
[F] make an ability of using bandb instead of .conf files as bans storage
|
||||
[x] drop non-TS6 (legacy protocol) support
|
||||
[F] Doxygen code documentation
|
||||
[?] Patch or core-feature - libguess on-fly any-charset-to-utf8 translation
|
||||
[/] module engine rework
|
||||
[/] more beautiful way of adding new channel modes by module
|
||||
[x] basic functionality
|
||||
|
|
|
@ -453,7 +453,7 @@ ircd_log_cb(const char *str)
|
|||
static void
|
||||
ircd_restart_cb(const char *str)
|
||||
{
|
||||
ilog(L_MAIN, "libratbox has called the restart callback: %s", str);
|
||||
inotice(L_MAIN, "libratbox has called the restart callback: %s", str);
|
||||
restart(str);
|
||||
}
|
||||
|
||||
|
@ -474,7 +474,7 @@ ircd_die_cb(const char *str)
|
|||
inotice("libratbox has called the die callback..aborting: %s", str);
|
||||
}
|
||||
else
|
||||
ilog(L_MAIN, "libratbox has called the die callback..aborting");
|
||||
inotice(L_MAIN, "libratbox has called the die callback..aborting");
|
||||
|
||||
unlink(pidFileName);
|
||||
exit(EXIT_FAILURE);
|
||||
|
|
Loading…
Reference in a new issue