diff options
author | Sadie Powell <sadie@witchery.services> | 2025-02-18 11:48:43 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-02-18 11:48:43 +0000 |
commit | 9f82a960e44c5db3d2e64bdda099823b3078c90d (patch) | |
tree | 8890673c0c4e0787359224d6768a7818d31661ae /modules/extra/sqlite.cpp | |
parent | 3bba87b655a5c7d5f5721a5a7fc018f30f1390f2 (diff) |
Log the version of third-party libraries on load.
Diffstat (limited to 'modules/extra/sqlite.cpp')
-rw-r--r-- | modules/extra/sqlite.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/extra/sqlite.cpp b/modules/extra/sqlite.cpp index 565c1ee30..d234066a0 100644 --- a/modules/extra/sqlite.cpp +++ b/modules/extra/sqlite.cpp @@ -103,6 +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(); } ~ModuleSQLite() |