diff options
-rw-r--r-- | src/modules/ns_noop.c | 2 | ||||
-rw-r--r-- | src/modules/os_info.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 5 insertions, 5 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; } } diff --git a/version.log b/version.log index 5c61f5011..1160f7a7f 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="766" +VERSION_BUILD="767" # $Log$ # +# BUILD : 1.7.8 (767) +# BUGS : N/A +# NOTES : Removed some pointless alogs +# # BUILD : 1.7.8 (766) # BUGS : N/A # NOTES : Added author/version and type to cs_tban |