summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/ns_noop.c2
-rw-r--r--src/modules/os_info.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/modules/ns_noop.c b/src/modules/ns_noop.c
index 14662596b..f29649f9c 100644
--- a/src/modules/ns_noop.c
+++ b/src/modules/ns_noop.c
@@ -289,7 +289,6 @@ int mSaveData(int argc, char **argv)
if (argc >= 1) {
if (stricmp(argv[0], EVENT_START) == 0) {
- alog("ns_noop: Saving the databases has started!");
if ((out = fopen(NSAutoOPDBName, "w")) == NULL) {
alog("ns_noop: ERROR: can not open the database file!");
anope_cmd_global(s_NickServ,
@@ -307,7 +306,6 @@ int mSaveData(int argc, char **argv)
fclose(out);
}
} else {
- alog("ns_noop: Saving the databases is complete");
ret = 0;
}
}
diff --git a/src/modules/os_info.c b/src/modules/os_info.c
index be97dad52..ef5391ec4 100644
--- a/src/modules/os_info.c
+++ b/src/modules/os_info.c
@@ -411,7 +411,6 @@ int mSaveData(int argc, char **argv)
if (argc >= 1) {
if (!stricmp(argv[0], EVENT_START)) {
- alog("os_info: Saving the databases has started!");
if ((out = fopen(OSInfoDBName, "w")) == NULL) {
alog("os_info: ERROR: can not open the database file!");
anope_cmd_global(s_OperServ,
@@ -443,7 +442,6 @@ int mSaveData(int argc, char **argv)
fclose(out);
}
} else {
- alog("os_info: Saving the databases is complete");
ret = 0;
}
}