summaryrefslogtreecommitdiff
path: root/modules/extra/sqlite.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-05 16:03:23 +0000
committerSadie Powell <sadie@witchery.services>2025-03-05 16:03:23 +0000
commit14342f6375cce455ddde79cb9403daea6a727b7f (patch)
tree5ccb6680807983962320df7a0f8b8f277a808ea1 /modules/extra/sqlite.cpp
parenta0a9d433dce2827e8aeae29aa2eb5325ed7af150 (diff)
Fix the on start library version logging to include the module.
Diffstat (limited to 'modules/extra/sqlite.cpp')
-rw-r--r--modules/extra/sqlite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/sqlite.cpp b/modules/extra/sqlite.cpp
index 36bafae4c..8808c5847 100644
--- a/modules/extra/sqlite.cpp
+++ b/modules/extra/sqlite.cpp
@@ -103,7 +103,7 @@ class ModuleSQLite final
public:
ModuleSQLite(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, EXTRA | VENDOR)
{
- Log() << "Module was compiled against SQLite version " << SQLITE_VERSION << " and is running against version " << sqlite3_libversion();
+ Log(this) << "Module was compiled against SQLite version " << SQLITE_VERSION << " and is running against version " << sqlite3_libversion();
}
~ModuleSQLite()