use kore_log() to notify when a module is reloaded

This commit is contained in:
Joris Vink 2013-06-05 08:56:37 +02:00
parent b9f47b0f86
commit 338047a95b
1 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <regex.h>
#include <zlib.h>
@ -113,7 +114,7 @@ kore_module_reload(void)
onload();
}
kore_debug("reloaded '%s' module", mod_name);
kore_log(LOG_NOTICE, "reloaded '%s' module", mod_name);
}
int