From e42c728ab8bca1ef6be17f66d8a41ae175913e5b Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 19 Jun 2024 19:41:16 +0100 Subject: [PATCH] Log the channel that a mode lock was unable to be imported for. --- modules/database/db_atheme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/database/db_atheme.cpp b/modules/database/db_atheme.cpp index 2d294fe32..948ff787f 100644 --- a/modules/database/db_atheme.cpp +++ b/modules/database/db_atheme.cpp @@ -1420,7 +1420,7 @@ public: auto mh = ModeManager::FindChannelModeByName(mlock.name); if (!mh) { - Log(this) << "Unable to find mode while importing mode lock: " << mlock.name; + Log(this) << "Unable to find mode while importing mode lock on " << ci->name << ": " << mlock.name; continue; }