1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 17:53:13 +02:00

Fix the on start library version logging to include the module.

This commit is contained in:
Sadie Powell
2025-03-05 16:03:23 +00:00
parent a0a9d433dc
commit 14342f6375
8 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -268,7 +268,7 @@ public:
unsigned int xmlrpc_major, xmlrpc_minor, xmlrpc_point;
xmlrpc_version(&xmlrpc_major, &xmlrpc_minor, &xmlrpc_point);
Log() << "Module is running against xmlrpc-c version " << xmlrpc_major << '.' << xmlrpc_minor << '.' << xmlrpc_point;
Log(this) << "Module is running against xmlrpc-c version " << xmlrpc_major << '.' << xmlrpc_minor << '.' << xmlrpc_point;
}
~ModuleXMLRPC() override