diff options
author | Sadie Powell <sadie@witchery.services> | 2024-06-19 19:41:16 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-06-19 19:41:16 +0100 |
commit | e42c728ab8bca1ef6be17f66d8a41ae175913e5b (patch) | |
tree | 88f953644ee4cc98d6cbb438ca55183988be68c1 /modules | |
parent | 4eec5c5435e78609b25082c2a1a1b343dc8839e1 (diff) |
Log the channel that a mode lock was unable to be imported for.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/database/db_atheme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |